vote up 0 vote down star

can somebody give me an example how to insert binary std::string using ODBC and C++ into BLOB column, please?

EDIT:

Duplicate of How to INSERT binary std::string into BLOB (MySQL).

flag
Looks like a dup: <stackoverflow.com/questions/733262/…; – dirkgently Apr 12 at 9:47
From the same person, no less – 1800 INFORMATION Apr 12 at 9:54
Voting to close. – dirkgently Apr 12 at 9:55
Yes, but there is no real answer as well... – Evgueni Kolossov Apr 12 at 10:07
Then in that case, maybe you need should post a bounty for the original question? Also, you have not really succeeded in explaining why the answer to the original question was wrong. – 1800 INFORMATION Apr 12 at 10:24
show 6 more comments

1 Answer

vote up 0 vote down

If it is really a binary string, and you have actual binary data in it (e.g. embedded nulls) then you need to be careful not to use any of the std::string members that can treat it as a C string (e.g. with a terminating null) as you will obviously end up losing data.

The std::string class is not really appropriate for this purpose - it is written on the assumption that what you are working with is actually a string of characters - since you are using a blob or array of binary data, a std::vector is probably more appropriate.

To insert the data will require you to bind the content of the vector to the SQL query using bind parameters. That is to say, instead of using SQLExecDirect to execute a string containing the SQL query, you should use SQLPrepare to create the statement handle - you leave the spot where the value of the binary value would go with a '?', then use SQLBindParameter to bind the placeholder to the binary value. You then call the function using SQLExecute.

There are some code examples in the SQLBindParameter documentation above.

link|flag
std::string works perfectly with binary data – Neil Butterworth Apr 12 at 11:26
So, can you show how it works perfectly? – Evgueni Kolossov Apr 12 at 11:48
This is probably the solution I am looking for: lists.mysql.com/plusplus/1546?f=plain (void DatenbankMySQL::escape_blob (std::string& s) ) Do you think this will work? – Evgueni Kolossov Apr 12 at 11:54
Then please ignore my rantings about using or not using std::string with binary data and focus on the details of using bind parameters – 1800 INFORMATION Apr 12 at 11:55

Your Answer

Get an OpenID
or

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