]>
git.saurik.com Git - wxWidgets.git/blob - src/iodbc/hdbc.h
6 int type
; /* must be 1st field */
10 HENV genv
; /* back point to global env object */
12 HDBC dhdbc
; /* driver's private dbc */
13 HENV henv
; /* back point to instant env object */
14 HSTMT hstmt
; /* list of statement object handle(s) */
34 int trace
; /* trace flag */
38 tstm
; /* trace stream */
43 * - ODBC applications can see address of driver manager's
44 * connection object, i.e connection handle -- a void pointer,
45 * but not detail of it. ODBC applications can neither see
46 * detail driver's connection object nor its address.
48 * - ODBC driver manager knows its own connection objects and
49 * exposes their address to an ODBC application. Driver manager
50 * also knows address of driver's connection objects and keeps
51 * it via dhdbc field in driver manager's connection object.
53 * - ODBC driver exposes address of its own connection object to
54 * driver manager without detail.
56 * - Applications can get driver's connection object handle by
57 * SQLGetInfo() with fInfoType equals to SQL_DRIVER_HDBC.