I'm expecting SQLITE_BLOB when using sqlite3_column_type() It keeps returning SQLITE_TEXT (3) while the field was created as BLOB.
The text returned from sqlite3_column_text() is in hex notation. At this time i don't mind the wrong type nr as long i can distinguish the HEX blob data from ordinary fielddata (text e.o) I have no problem with a conversion from hex to binary data, it's my wish to use a common function to return any fielddata requested as binary string data. (And thus not knowing at forhand what datatype was stored) How?