diff options
author | Hiroshi Inoue | 2002-05-22 05:51:03 +0000 |
---|---|---|
committer | Hiroshi Inoue | 2002-05-22 05:51:03 +0000 |
commit | 79420840ee4f56b8399d3f526bb45ce788198e2e (patch) | |
tree | 83027ac6beca92e86847cf9468d58e9385bcc6fc /src/interfaces/odbc/pgapifunc.h | |
parent | 6c6f395a8aca8a9525d62cbf46fbafd130bdb9e5 (diff) |
1) Support Keyset Driven driver cursors.
2) Supprt ARD precision/scale and SQL_C_NUEMRIC.
3) Minimal implementation of SQLGetDiagField().
4) SQLRowCount() reports the result of SQLSetPos and SQLBulkOperation.
5) int8 -> SQL_NUMERIC for Microsoft Jet.
6) Support isolation level change.
7) ODBC3.0 SQLSTATE code.
8) Append mode log files.
Diffstat (limited to 'src/interfaces/odbc/pgapifunc.h')
-rw-r--r-- | src/interfaces/odbc/pgapifunc.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/interfaces/odbc/pgapifunc.h b/src/interfaces/odbc/pgapifunc.h index f4c740bca84..756a49d9458 100644 --- a/src/interfaces/odbc/pgapifunc.h +++ b/src/interfaces/odbc/pgapifunc.h @@ -172,7 +172,8 @@ RETCODE SQL_API PGAPI_ExtendedFetch( SQLUSMALLINT fFetchType, SQLINTEGER irow, SQLUINTEGER *pcrow, - SQLUSMALLINT *rgfRowStatus); + SQLUSMALLINT *rgfRowStatus, + SQLINTEGER FetchOffset); RETCODE SQL_API PGAPI_ForeignKeys( HSTMT hstmt, SQLCHAR *szPkCatalogName, @@ -281,6 +282,8 @@ RETCODE SQL_API PGAPI_SetConnectAttr(HDBC ConnectionHandle, RETCODE SQL_API PGAPI_SetStmtAttr(HSTMT StatementHandle, SQLINTEGER Attribute, PTR Value, SQLINTEGER StringLength); +RETCODE SQL_API PGAPI_BulkOperations(HSTMT StatementHandle, + SQLSMALLINT operation); RETCODE SQL_API PGAPI_SetDescField(SQLHDESC DescriptorHandle, SQLSMALLINT RecNumber, SQLSMALLINT FieldIdentifier, PTR Value, SQLINTEGER BufferLength); |