Try using
wchar_t *tab_str = new wchar_t
for (int i = 0; i < maxsize; i++) {
//tab_str_ = new wchar_t;
tab_str_ = '\0';
}
but the data is not return.
How to do this ?
Please help
Regards
Alvin
__
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
Original method:
wchar_t tab_str;
if(!OCI_BindArrayOfStrings(st, MT(":o_V2"), (wchar_t*) tab_str, 30, 1000))
Try using
wchar_t *tab_str = new wchar_t
for (int i = 0; i < maxsize; i++) {
//tab_str_ = new wchar_t;
tab_str_ = '\0';
}
but the data is not return.
How to do this ?
Please help
Regards
Alvin
__
Hi,
for string arrays, OCI only supports contiginous arrays of buffer like array;
it's not my choice...but oracle one.