SHA256
1
0
forked from pool/sqlite3

Version 3.7.5; Split off the Tcl bindings

OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=37
This commit is contained in:
2011-02-03 14:57:53 +00:00
committed by Git OBS Bridge
parent 920ea3af16
commit a6e2b1cae7
5 changed files with 39 additions and 49 deletions

View File

@@ -1,3 +1,34 @@
-------------------------------------------------------------------
Thu Feb 3 14:52:19 UTC 2011 - max@novell.com
- New Version: 3.7.5:
* Added the sqlite3_vsnprintf() interface.
* Added the SQLITE_DBSTATUS_LOOKASIDE_HIT,
SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE, and
SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL options for the
sqlite3_db_status() interface.
* Added the SQLITE_OMIT_AUTORESET compile-time option.
* Added the SQLITE_DEFAULT_FOREIGN_KEYS compile-time option.
* Updates to sqlite3_stmt_readonly() so that its result is
well-defined for all prepared statements and so that it works
with VACUUM.
* Added the "-heap" option to the command-line shell
* Fix a bug involving frequent changes in and out of WAL mode
and VACUUM that could (in theory) cause database corruption.
* Enhance the sqlite3_trace() mechanism so that nested SQL
statements such as might be generated by virtual tables are
shown but are shown in comments and without parameter
expansion. This greatly improves tracing output when using the
FTS3/4 and/or RTREE virtual tables.
* Change the xFileControl() methods on all built-in VFSes to
return SQLITE_NOTFOUND instead of SQLITE_ERROR for an
unrecognized operation code.
* The SQLite core invokes the SQLITE_FCNTL_SYNC_OMITTED file
control to the VFS in place of a call to xSync if the database
has PRAGMA synchronous set to OFF.
- Split off sqlite3-tcl into a separate source package.
-------------------------------------------------------------------
Thu Jan 13 14:08:55 UTC 2011 - max@novell.com