Proper way to obtain a std:string from a Pro*C/C++ VARCHAR

107 Views Asked by At

What is the proper way of getting a std:string out of a Pro*C/C++ VARCHAR?

VARCHAR some_column[10];

std::string x(reinterpret_cast<char const*>(some_column.arr), some_column.len);
std::string y((char const*) some_column.arr, some_column.len);

1

There are 1 best solutions below

4
On BEST ANSWER

Basically you can't.

Read it into a character array which is big enough to hold the value. Add one additional character to the array size, and initialize it to 0, so that you have a c string.

After loading it, into the character buffer, assign it to the string.