Mapping Deprecated Functions
The mapping in the list is triggered when the driver is an ODBC 3.0 driver,
and the driver does not support the function that is being mapped.
The following is a list of all duplicated functionality that was introduced in
ODBC 3.0:
ODBC 2.x function
| ODBC 3.0 function
|
SQLAllocConnect | SQLAllocHandle
|
SQLAllocEnv
| SQLAllocHandle
|
SQLAllocStmt
| SQLAllocHandle
|
SQLBindParam [2]
| SQLBindParameter
|
SQLColAttributes
| SQLColAttribute
|
SQLError
| SQLGetDiagRec
|
SQLFreeConnect
| SQLFreeHandle
|
SQLFreeEnv
| SQLFreeHandle
|
SQLFreeStmt with an Option of SQL_DROP
| SQLFreeHandle
|
SQLGetConnectOption
| SQLGetConnectAttr
|
SQLGetStmtOption
| SQLGetStmtAttr
|
SQLParamOptions
| SQLSetStmtAttr
|
SQLSetConnectOption
| SQLSetConnectAttr
|
SQLSetParam [1]
| SQLBindParameter
|
SQLSetScrollOption
| SQLSetStmtAttr
|
SQLSetStmtOption
| SQLSetStmtAttr
|
SQLTransact
| SQLEndTran
|
[1] This is an ODBC 1.0 function.
[2] Even though this function did not exist in ODBC 2.x, it is in the X/Open and ISO standards. |