From: Date: December 14 2007 10:31pm Subject: Connector/ODBC 3.51 commit: r957 - branches/guffert/driver List-Archive: http://lists.mysql.com/commits/40036 Message-Id: <200712142131.lBELVKF2030438@bk-internal.mysql.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Modified: branches/guffert/driver/error.c branches/guffert/driver/error.h Log: add new error constant HY017 - Invalid use of an automatically allocated descriptor handle Modified: branches/guffert/driver/error.c =================================================================== --- branches/guffert/driver/error.c 2007-12-13 20:17:09 UTC (rev 956) +++ branches/guffert/driver/error.c 2007-12-14 21:31:20 UTC (rev 957) @@ -71,6 +71,7 @@ {"HY013","Memory management error", SQL_ERROR}, {"HY015","No cursor name available", SQL_ERROR}, {"HY016","Cannot modify an implementation row descriptor", SQL_ERROR}, + {"HY017","Invalid use of an automatically allocated descriptor handle", SQL_ERROR}, {"HY024","Invalid attribute value", SQL_ERROR}, {"HY090","Invalid string or buffer length", SQL_ERROR}, {"HY091","Invalid descriptor field identifier", SQL_ERROR}, Modified: branches/guffert/driver/error.h =================================================================== --- branches/guffert/driver/error.h 2007-12-13 20:17:09 UTC (rev 956) +++ branches/guffert/driver/error.h 2007-12-14 21:31:20 UTC (rev 957) @@ -112,6 +112,7 @@ MYERR_S1013, MYERR_S1015, MYERR_S1016, + MYERR_S1017, MYERR_S1024, MYERR_S1090, MYERR_S1091,