vote up 0 vote down star

I'm using a SQLite database to store cover images of books I have in a database. I've got the inserting of BLOBs ok, but when I don't have a cover image for my book I can't seem to get it to insert a null BLOB.

I'm using parameters for my insert SQL statement, using ODBC, as shown below:

OdbcParameter^ paramCoverImage = gcnew OdbcParameter("@CoverImage", ByteArray);

cmd->Parameters->Add(paramCoverImage);

But when I try and do it with nullptr instead of the ByteArray, SQLite gives an error. I want to use the SQL NULL, but I can't find out how to do that using ODBC and SQLite. Any ideas?

Robin

flag

52% accept rate

1 Answer

vote up 2 vote down check

Try:

OdbcParameter^ paramCoverImage = gcnew OdbcParameter("@CoverImage", OdbcType::Binary);
paramCoverImage->Value = System::DbNull->Value;
link|flag
That worked perfectly. Thank you. :-) – robintw Jun 3 at 21:30

Your Answer

Get an OpenID
or

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