Guys, At least for Windows parameters for SQLDescribeParam start from 1 not from 0. In statement.cxx you have
for (int i = 0; i < argCount; ++i) { // default source type always char while ((rc = SQLDescribeParam(stmt, i,
must be:
for (int i = 0; i < argCount; ++i) { // default source type always char while ((rc = SQLDescribeParam(stmt, i+1,
Log in to post a comment.
Guys,
At least for Windows parameters for SQLDescribeParam start from 1 not from 0.
In statement.cxx you have
must be: