Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | CONST -> const |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ed7550027c58085a89420a552f5ca077 |
User & Date: | jan.nijtmans 2018-07-11 20:39:47.246 |
Context
2018-11-01
| ||
16:09 | TEA update check-in: 05df62777a user: dgp tags: trunk, tdbcodbc-1-1-0 | |
2018-07-11
| ||
20:39 | CONST -> const check-in: ed7550027c user: jan.nijtmans tags: trunk | |
2018-07-04
| ||
10:16 | Remove experimental lib loader. check-in: 51215942e0 user: stu tags: trunk | |
Changes
Changes to generic/tdbcodbc.c.
︙ | ︙ | |||
387 388 389 390 391 392 393 | static void DismissHEnv(void); static SQLHSTMT AllocAndPrepareStatement(Tcl_Interp* interp, StatementData* sdata); static int GetResultSetDescription(Tcl_Interp* interp, ResultSetData* rdata); static int ConfigureConnection(Tcl_Interp* interp, SQLHDBC hDBC, PerInterpData* pidata, | | | 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 | static void DismissHEnv(void); static SQLHSTMT AllocAndPrepareStatement(Tcl_Interp* interp, StatementData* sdata); static int GetResultSetDescription(Tcl_Interp* interp, ResultSetData* rdata); static int ConfigureConnection(Tcl_Interp* interp, SQLHDBC hDBC, PerInterpData* pidata, int objc, Tcl_Obj *const objv[], SQLUSMALLINT* connectFlagsPtr, HWND* hParentWindowPtr); static int ConnectionConstructor(ClientData clientData, Tcl_Interp* interp, Tcl_ObjectContext context, int objc, Tcl_Obj *const objv[]); static int ConnectionBeginTransactionMethod(ClientData clientData, Tcl_Interp* interp, |
︙ | ︙ | |||
1547 1548 1549 1550 1551 1552 1553 | static int ConfigureConnection( Tcl_Interp* interp, /* Tcl interpreter */ SQLHDBC hDBC, /* Handle to the connection */ PerInterpData* pidata, /* Package-global data */ int objc, /* Option count */ | | | 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 | static int ConfigureConnection( Tcl_Interp* interp, /* Tcl interpreter */ SQLHDBC hDBC, /* Handle to the connection */ PerInterpData* pidata, /* Package-global data */ int objc, /* Option count */ Tcl_Obj *const objv[], /* Option vector */ SQLUSMALLINT* connectFlagsPtr, /* Pointer to the driver connection options */ HWND* hParentWindowPtr /* Handle to the parent window for a * connection dialog */ ) { /* Configuration options */ |
︙ | ︙ |