From 3c16d095b5b395560a567db8ae8cfa06899150f9 Mon Sep 17 00:00:00 2001 From: Hiroshi Inoue Date: Mon, 18 Feb 2002 03:16:11 +0000 Subject: The version is now 7.01.0010. 1) Handle parameter array. 2) Allow re-use of the connection handle after SQLDisconnect. 3) Reject NULL if no indicator specified. 4) Improve the handling of '_' in table name. 5) Unify internal begin/commit/abort operations. 6) Change SQLTables() to return null not "" for the table_owner. 7) Fix a bug about parameter handling reported by Benoit Menendez. 8) Add cast in handling ODBC date/time escape sequences. 9) Fix a bug about cache_size handing in declare/fetch mode. [ODBC3.0 related] 10) Improve the handling of descriptor handles(ODBC3.0). 11) Improve the type handling of some types for ODBC3.0. [Thanks to Marcelo Aceto for his useful patches] 12) Allow nested ODBC escape. 13) Allow changing autocommit on/off inside the transaction block. 14) Improve the handling of ODBC scalar functions. --- src/interfaces/odbc/odbcapi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/interfaces/odbc/odbcapi.c') diff --git a/src/interfaces/odbc/odbcapi.c b/src/interfaces/odbc/odbcapi.c index a87c35850c4..0527b21c38b 100644 --- a/src/interfaces/odbc/odbcapi.c +++ b/src/interfaces/odbc/odbcapi.c @@ -84,8 +84,8 @@ SQLColumns(HSTMT StatementHandle, { mylog("[SQLColumns]"); return PGAPI_Columns(StatementHandle, CatalogName, NameLength1, - SchemaName, NameLength2, TableName, NameLength3, - ColumnName, NameLength4); + SchemaName, NameLength2, TableName, NameLength3, + ColumnName, NameLength4, 0); } @@ -218,7 +218,7 @@ SQLFetch(HSTMT StatementHandle) RETCODE SQL_API SQLFreeConnect(HDBC ConnectionHandle) { - mylog("[SQLFreeStmt]"); + mylog("[SQLFreeConnect]"); return PGAPI_FreeConnect(ConnectionHandle); } -- cgit v1.2.3