I am able to read char into char[2] in OCI C++ code, but I am not able to read to char[1]?
Does anyone have any idea why?
(oracle data type is char(1))
|
|
|||||
|
|
|
If the input is being treated like a string, then room is needed to apply the null-termination (a Without knowing anything about the tools you're using I can't say for sure, but you might be able to assign to a character variable (as opposed to a character array variable). Looking briefly at the docs along the link you posted, I suspect that you should be using |
||
|
|
|
|
Possibly you need space for the null character at the end of the string? |
||
|
|