I am inserting a unsigned char* array into table column that is BLOB and is binary. The data inserts fine.
unsigned char* templByte;
.
.
.
string temp;
stringstream ss;
for(i = 0; i < size; i++)
{
ss << templByte[i];
}
temp = ss.str();
I don't think the operator[] for StoreQueryResult allows for 2d array semantics. Just perusing the documentation it appears it is a specialization of std::vector.