SQLParamOptions function (CLI) - Specify an input array for a parameter
In ODBC 3.0, SQLParamOptions() has
been deprecated and replaced with SQLSetStmtAttr().
Although this version of CLI continues
to support SQLParamOptions(), use SQLSetStmtAttr() in
your CLI programs
so that they conform to the latest standards.
Migrating to the new function
The statement:
SQLParamOptions(hstmt, crow, pirow);
for
example, would be rewritten using the new function as: SQLSetStmtAttr(hstmt, fOption, pvParam, fStrLen);