[freetds] Problem with freetds_0.62.4 and SQLSetStmtAttrSQL_ATTR_CURSOR_TY PE SQL_CURSOR_STATIC

Lowden, James K LowdenJK at bernstein.com
Fri Jan 21 16:10:26 EST 2005


> From: kwills at mercantec.com
> Sent: Friday, January 21, 2005 2:40 PM
> I am attempting to use the following statement:
> 
> SqlReturn = SQLSetStmtAttr(stmt, SQL_ATTR_CURSOR_TYPE, (SQLUINTEGER
> *)SQL_CURSOR_STATIC, 0 );
> 
> It is giving back an error of: [FreeTDS][SQL Server]Option value
changed]
> ...
> It looks like the SQLSetStmtAttr is failing using FreeTDS but succeeds
when
> using Microsoft SQL Server ODBC Driver Version 03.85.1025.

The FreeTDS ODBC library lacks (much) support for cursors.  Here is the
code that generates your message (src/odbc/odbc.c, line 5139):

        case SQL_ATTR_CURSOR_TYPE:
                /* TODO cursors */
                if (stmt->attr.cursor_type != ui) {
                        odbc_errs_add(&stmt->errs, "01S02", NULL, NULL);
                        ODBC_RETURN(stmt, SQL_SUCCESS_WITH_INFO);
                }
                stmt->attr.cursor_type = ui;
                break;

>From what I see, 01S02 might not be the best message; perhaps HYC00
(Optional feature not implemented) or HY011 (Attribute cannot be set
now) would be more accurate.  

--jkl

-----------------------------------------
The information contained in this transmission may contain privileged and confidential information and is intended only for the use of the person(s) named above. If you are not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, any review, dissemination, distribution or duplication of this communication is strictly prohibited. If you are not the intended recipient, please contact the sender immediately by reply e-mail and destroy all copies of the original message. Please note that we do not accept account orders and/or instructions by e-mail, and therefore will not be responsible for carrying out such orders and/or instructions.
If you, as the intended recipient of this message, the purpose of which is to inform and update our clients, prospects and consultants of developments relating to our services and products, would not like to receive further e-mail correspondence from the sender, please "reply" to the sender indicating your wishes.  In the U.S.: 1345 Avenue of the Americas, New York, NY 10105.





More information about the FreeTDS mailing list