vote up 1 vote down star

I have an sqlite table that contains a BLOB file, but need to do a size/length check on the blob, how do I do that?

According to some documentation I did find, using length(blob) won't work, because length() only works on texts and will stop counting after the first NULL. My empirical tests have shown this to be true.

I'm using SQLite 3.4.2

flag

50% accept rate

1 Answer

vote up 2 vote down check

haven't had this problem, but you could try length(hex(glob))/2

link|flag
Yep thats it! thanks. – Petriborg Oct 30 '08 at 22:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.