Raygun - 2015-04-24

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,