I try to read BLOB data from a database file with Octave 6.2.0 and the mex-sqlite3-master package.
I am able to select and read any other data from my database file. For the column containing BLOB data it gives me the following:
octave> x=sqlite3('file.db', 'SELECT column FROM list'); error: sqlite3: unsupported column type
octave> x=sqlite3('file.db', 'SELECT column FROM list WHERE column=CAST(column AS TEXT)'); gives no error, however x with a dimension of 1x0.
The BLOB-data contains hexadecimal numbers. I am fine having them as string (and work my way further, no probs).
What can I do to extract the BLOB-data in a processable format?
Thanks for any hint!