NetTalk Central

Author Topic: blob column question.  (Read 1568 times)

carlossm

  • Newbie
  • *
  • Posts: 14
    • View Profile
    • Email
blob column question.
« on: December 26, 2013, 10:26:50 AM »
Hi, for some reason the blob columns on a table are not being loaded from disk.
In the GenerateForm embed, I'm trying to copy the content of a blob into a session variable and the size comes back as zero. I know there is data in the column, I checked it with MySql workbench.

size(Pac:AHF) comes back as zero.

Any Ideas?

Thanks
Carlos San Miguel

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11155
    • View Profile
Re: blob column question.
« Reply #1 on: December 27, 2013, 04:19:17 AM »
Hi Carlos,

I think you'll need to set up an example - ideally with TPS (which also support blobs) for what you are trying to do.

Blobs are not the same as "big strings" and aren't typically used to hold "big string data", so they behave differently to string fields, both at the Clarion driver level, and the NetTalk level.

So take one of the shipping examples, tweak it a bit to contain a blob, and let's see what can be done.

cheers
Bruce

carlossm

  • Newbie
  • *
  • Posts: 14
    • View Profile
    • Email
Re: blob column question.
« Reply #2 on: December 27, 2013, 07:33:48 AM »
Thanks Bruce. I ended using cstring(64000). I don't think I'll need more than that.

Carlos San Miguel