Hi everyone. My new app is coming along very nicely now.
I have successfully created an SQLLite database and a table within it. Ultimately, records will be downloaded and inserted into my table, but for now I simply want to add a BLOB field to my table and then insert an image programmatically. I am thinking I could add bitmaps to the project, but how, then, can I insert them in the new field?
For testing purposes I start by deleting the database if present, then adding 4 dummy records to my table using CREATE TABLE in an ExecNonQuery and then using ExecNonQuery2 (to handle field types) to insert the four records.
Can you please advise (preferably with a bit of code as an example) how I do this?
Thanks in anticipation of any help - very much appreciated.
Malcolm
I have successfully created an SQLLite database and a table within it. Ultimately, records will be downloaded and inserted into my table, but for now I simply want to add a BLOB field to my table and then insert an image programmatically. I am thinking I could add bitmaps to the project, but how, then, can I insert them in the new field?
For testing purposes I start by deleting the database if present, then adding 4 dummy records to my table using CREATE TABLE in an ExecNonQuery and then using ExecNonQuery2 (to handle field types) to insert the four records.
Can you please advise (preferably with a bit of code as an example) how I do this?
Thanks in anticipation of any help - very much appreciated.
Malcolm