Click to See Complete Forum and Search --> : Updating binary data using ODBC API


harish_kolar
January 21st, 2004, 12:56 AM
I am using ODBC for the database connectivity in my C++ application.
I am having a column that takes binary data in my database.

Now how to update or insert data into this column.
I am using the sql statement like this:
"update table set binarydata=? where condition".
I am trying to use SQLBindParameter, but it is not inserting the whole data.
I am not using MFC.