Version 1.2.1 released 31.10.2024
Version 1.2.0 released 22.10.2024
SQL_ATTR_NOSCAN
via SQLSetStmtAttr
can be used to turn the search for ODBC escape sequences off (SQL_NOSCAN_ON
) or on (SQL_NOSCAN_OFF
).IgnoreOdbcESC=True|False
recognized, to set the search for ODBC escape sequences off|on for all statements that are executed on that connection.SQL_TYPE_DATE
and SQL_TYPE_TIME
returned by SQLGetTypeInfo
now (SQL_TYPE_TIMESTAMP
was already returned by prior versions).Version 1.1.0 released 15.06.2024
BusyTimeout
to set the maximum time (in [milliseconds]) to wait for statements of other connections to finish before the execution of statements on this connection is aborted. This will call sqlite3_busy_timeout(...)
after the creation of the connection. The default value is 3000 (3 seconds). Note: The previous version 1.0.0 behaved as if BusyTimeout=0
was used (immediately fail if any other statement is executing).Test Connection
button of the DSN config dialog did not show the actual error message.Version 1.0.0 released 03.01.2024
SQLXxxxxW
functions. But it converts
string data to ANSI
if an application wants character data as SQL_C_CHAR
(instead of SQL_C_WCHAR
).Date
, Time
and Datetime
datatypes.SQLSetPos
with operations SQL_ADD
, SQL_UPDATE
, SQL_DELETE
and SQL_REFRESH
for tables with
primary keys, when all primary key columns are in the select list of the statement.