WinFuture-Forum.de: SQLite - WinFuture-Forum.de

Zum Inhalt wechseln

Beiträge in diesem Forum erhöhen euren Beitragszähler nicht.
  • 2 Seiten +
  • 1
  • 2

SQLite SQLite is a in-process library SQL database engine


#1 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 24. Juni 2011 - 16:20

Eingefügtes Bild 2011-June-24 - Version 3.7.7

Nutzen kann man das zB in Verwendung mit meiner Firefox Sqlite Batch Oberfläche, um die Firefox sqlite Dateien zu optimieren.

Changelog:
Add support for URI filenames
Add the sqlite3_vtab_config() interface in support of ON CONFLICT clauses with virtual tables.
Add the xSavepoint, xRelease and xRollbackTo methods in virtual tables in support of SAVEPOINT for virtual tables.
Update the built-in FTS3/FTS4 and RTREE virtual tables to support ON CONFLICT clauses and REPLACE.
Avoid unnecessary reparsing of the database schema.
Added support for the FTS4 prefix option and the FTS4 order option.
Allow WAL-mode databases to be opened read-only as long as there is an existing read/write connection.
Added support for short filenames.
SQLITE_SOURCE_ID: "2011-06-23 19:49:22 4374b7e83ea0a3fbc3691f9c0c936272862f32f2"
SHA1 for sqlite3.c: 5bbe79e206ae5ffeeca760dbd0d66862228db551


Download:
http://www.sqlite.org/download.html
0

Anzeige



#2 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 29. Juni 2011 - 13:19

2011-June-28 - Version 3.7.7.1

Changelog:
Fix a bug causing PRAGMA case_sensitive_like statements compiled using sqlite3_prepare() to fail with an SQLITE_SCHEMA error.
SQLITE_SOURCE_ID: "2011-06-28 17:39:05 af0d91adf497f5f36ec3813f04235a6e195a605f"
SHA1 for sqlite3.c: d47594b8a02f6cf58e91fb673e96cb1b397aace0


Download:
http://www.sqlite.org/download.html
0

#3 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 20. September 2011 - 17:44

SQLite Release 3.7.8 On 2011 September 19

Changelog:
  • Orders of magnitude performance improvement for CREATE INDEX on very large tables.
  • Improved the windows VFS to better defend against interference from anti-virus software.
  • Improved query plan optimization when the DISTINCT keyword is present.
  • Allow more system calls to be overridden in the unix VFS - to provide better support for chromium sandboxes.
  • Increase the default size of a lookahead cache line from 100 to 128 bytes.
  • Enhancements to the test_quota.c module so that it can track preexisting files.
  • Bug fix: Virtual tables now handle IS NOT NULL constraints correctly.
  • Bug fixes: Correctly handle nested correlated subqueries used with indices in a WHERE clause.


Download:
http://www.sqlite.org/download.html
0

#4 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 01. November 2011 - 17:58

SQLite Release Version 3.7.9

Changelog:
If a search token (on the right-hand side of the MATCH operator) in FTS4 begins with "^" then that token must be the first in its field of the document. ** Potentially Incompatible Change **
Added options SQLITE_DBSTATUS_CACHE_HIT and SQLITE_DBSTATUS_CACHE_MISS to the sqlite3_db_status() interface.
Removed support for SQLITE_ENABLE_STAT2, replacing it with the much more capable SQLITE_ENABLE_STAT3 option.
Enhancements to the sqlite3_analyzer utility program, including the --pageinfo and --stats options and support for multiplexed databases.
Enhance the sqlite3_data_count() interface so that it can be used to determine if SQLITE_DONE has been seen on the prepared statement.
Added the SQLITE_FCNTL_OVERWRITE file-control by which the SQLite core indicates to the VFS that the current transaction will overwrite the entire database file.
Increase the default lookaside memory allocator allocation size from 100 to 128 bytes.
Enhanced the query planner so that it can factor terms in and out of OR expressions in the WHERE clause in an effort to find better indices.
Added the SQLITE_DIRECT_OVERFLOW_READ compile-time option, causing overflow pages to be read directly from the database file, bypassing the page cache.
Remove limits on the magnitude of precision and width value in the format specifiers of the sqlite3_mprintf() family of string rendering routines.
Fix a bug that prevent ALTER TABLE ... RENAME from working on some virtual tables in a database with a UTF16 encoding.
Fix a bug in ASCII-to-float conversion that causes slow performance and incorrect results when converting numbers with ridiculously large exponents.
Fix a bug that causes incorrect results in aggregate queries that use multiple aggregate functions whose arguments contain complicated expressions that differ only in the case of string literals contained within those expressions.
Fix a bug that prevented the page_count and quick_check pragmas from working correctly if their names were capitalized.
Fix a bug that caused VACUUM to fail if the count_changes pragma was engaged.
Fix a bug in virtual table implementation that causes a crash if an FTS4 table is dropped inside a transaction and a SAVEPOINT occurs afterwards.
SQLITE_SOURCE_ID: "2011-11-01 00:52:41 c7c6050ef060877ebe77b41d959e9df13f8c9b5e"
SHA1 for sqlite3.c: becd16877f4f9b281b91c97e106089497d71bb47


Download:
http://www.sqlite.org/download.html
0

#5 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 16. Januar 2012 - 17:44

SQLite Release 3.7.10

Changelog:
  • The default schema format number is changed from 1 to 4. This means that, unless the PRAGMA legacy_file_format=ON statement is run, newly created database files will be unreadable by version of SQLite prior to 3.3.0 (2006-01-10). It also means that the descending indices are enabled by default.
  • The sqlite3_pcache_methods structure and the SQLITE_CONFIG_PCACHE and SQLITE_CONFIG_GETPCACHE configuration parameters are deprecated. They are replaced by a new sqlite3_pcache_methods2 structure and SQLITE_CONFIG_PCACHE2 and SQLITE_CONFIG_GETPCACHE2 configuration parameters.
  • Added the powersafe overwrite property to the VFS interface. Provide the SQLITE_IOCAP_POWERSAFE_OVERWRITE I/O capability, the SQLITE_POWERSAFE_OVERWRITE compile-time option, and the "psow=BOOLEAN" query parameter for URI filenames.
  • Added the sqlite3_db_release_memory() interface and the shrink_memory pragma.
  • Added the sqlite3_db_filename() interface.
  • Added the sqlite3_stmt_busy() interface.
  • Added the sqlite3_uri_boolean() and sqlite3_uri_int64() interfaces.
  • If the argument to PRAGMA cache_size is negative N, that means to use approximately -1024*N bytes of memory for the page cache regardless of the page size.
  • Enhanced the default memory allocator to make use of _msize() on windows, malloc_size() on Mac, and malloc_usable_size() on Linux.
  • Enhanced the query planner to support index queries with range constraints on the rowid.
  • Enhanced the query planner flattening logic to allow UNION ALL compounds to be promoted upwards to replace a simple wrapper SELECT even if the compounds are joins.
  • Enhanced the query planner so that the xfer optimization can be used with INTEGER PRIMARY KEY ON CONFLICT as long as the destination table is initially empty.
  • Enhanced the windows VFS so that all system calls can be overridden using the xSetSystemCall interface.
  • Updated the "unix-dotfile" VFS to use locking directories with mkdir() and rmdir() instead of locking files with open() and unlink().
  • Enhancements to the test_quota.c extension to support stdio-like interfaces with quotas.
  • Change the unix VFS to be tolerant of read() system calls that return less then the full number of requested bytes.
  • Change both unix and windows VFSes to report a sector size of 4096 instead of the old default of 512.
  • In the TCL Interface, add the -uri option to the "sqlite3" TCL command used for creating new database connection objects.
  • Added the SQLITE_TESTCTRL_EXPLAIN_STMT test-control option with the SQLITE_ENABLE_TREE_EXPLAIN compile-time option to enable the command-line shell to display ASCII-art parse trees of SQL statements that it processes, for debugging and analysis.
  • Bug fix: Add an additional xSync when restarting a WAL in order to prevent an exceedingly unlikely but theoretically possible database corruption following power-loss. Ticket ff5be73dee.
  • Bug fix: Change the VDBE so that all registers are initialized to Invalid instead of NULL. Ticket 7bbfb7d442
  • Bug fix: Fix problems that can result from 32-bit integer overflow. Ticket ac00f496b7e2
  • SQLITE_SOURCE_ID: "2012-01-16 13:28:40 ebd01a8deffb5024a5d7494eef800d2366d97204"
  • SHA1 for sqlite3.c: 6497cbbaad47220bd41e2e4216c54706e7ae95d4


Download:
http://www.sqlite.org/download.html
0

#6 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 21. März 2012 - 18:49

SQLite 3.7.11

Changelog:
Enhance the INSERT syntax to allow multiple rows to be inserted via the VALUES clause.
Enhance the CREATE VIRTUAL TABLE command to support the IF NOT EXISTS clause.
Added the sqlite3_stricmp() interface as a counterpart to sqlite3_strnicmp().
Added the sqlite3_db_readonly() interface.
Added the SQLITE_FCNTL_PRAGMA file control, giving VFS implementations the ability to add new PRAGMA statements or to override built-in PRAGMAs.
Queries of the form: "SELECT max(x), y FROM table" returns the value of y on the same row that contains the maximum x value.
Added support for the FTS4 languageid option.
Documented support for the FTS4 content option. This feature has actually been in the code since version 3.7.9 but is only now considered to be officially supported.
Pending statements no longer block ROLLBACK. Instead, the pending statement will return SQLITE_ABORT upon next access after the ROLLBACK.
Improvements to the handling of CSV inputs in the command-line shell
Fix a bug introduced in version 3.7.10 that might cause a LEFT JOIN to be incorrectly converted into an INNER JOIN if the WHERE clause indexable terms connected by OR.


Download:
http://www.sqlite.org/download.html
0

#7 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 14. Mai 2012 - 18:25

SQLite 3.7.12

Changelog:
  • Add the SQLITE_DBSTATUS_CACHE_WRITE option for sqlite3_db_status().
  • Optimize the typeof() and length() SQL functions so that they avoid unnecessary reading of database content from disk.
  • Add the FTS4 "merge" command, the FTS4 "automerge" command, and the FTS4 "integrity-check" command.
  • Report the name of specific CHECK constraints that fail.
  • In the command-line shell, use popen() instead of fopen() if the first character of the argument to the ".output" command is "|".
  • Make use of OVERLAPPED in the windows VFS to avoid some system calls and thereby obtain a performance improvement.
  • More aggressive optimization of the AND operator when one side or the other is always false.
  • Improved performance of queries with many OR-connected terms in the WHERE clause that can all be indexed.
  • Add the SQLITE_RTREE_INT_ONLY compile-time option to force the R*Tree Extension Module to use integer instead of floating point values for both storage and computation.
  • Enhance the PRAGMA integrity_check command to use much less memory when processing multi-gigabyte databases.
  • New interfaces added to the test_quota.c add-on module.
  • Added the ".trace" dot-command to the command-line shell.
  • Allow virtual table constructors to be invoked recursively.
  • Improved optimization of ORDER BY clauses on compound queries.
  • Improved optimization of aggregate subqueries contained within an aggregate query.
  • Bug fix: Fix the RELEASE command so that it does not cancel pending queries. This repairs a problem introduced in 3.7.11.
  • Bug fix: Do not discard the DISTINCT as superfluous unless a subset of the result set is subject to a UNIQUE constraint and it none of the columns in that subset can be NULL. Ticket 385a5b56b9.
  • Bug fix: Do not optimize away an ORDER BY clause that has the same terms as a UNIQUE index unless those terms are also NOT NULL. Ticket 2a5629202f.
  • SQLITE_SOURCE_ID: "2012-05-14 01:41:23 8654aa9540fe9fd210899d83d17f3f407096c004"
  • SHA1 for sqlite3.c: 57e2104a0f7b3f528e7f6b7a8e553e2357ccd2e1


Download:
http://www.sqlite.org/download.html
0

#8 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 28. Mai 2012 - 16:45

SQLite 3.7.12.1

Changelog:
Fix a bug (ticket c2ad16f997) in the 3.7.12 release that can cause a segfault for certain obscure nested aggregate queries.
Fix various other minor test script problems.
SQLITE_SOURCE_ID: "2012-05-22 02:45:53 6d326d44fd1d626aae0e8456e5fa2049f1ce0789"
SHA1 for sqlite3.c: d494e8d81607f0515d4f386156fb0fd86d5ba7df


Download:
http://www.sqlite.org/download.html
0

#9 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 12. Juni 2012 - 16:52

SQLite 3.7.13

Changelog:
  • In-memory databases that are specified using URI filenames are allowed to use shared cache, so that the same in-memory database can be accessed from multiple database connections.
  • Recognize and use the mode=memory query parameter in URI filenames.
  • Avoid resetting the schema of shared cache connections when any one connection closes. Instead, wait for the last connection to close before reseting the schema.
  • In the RTREE extension, when rounding 64-bit floating point numbers to 32-bit for storage, always round in a direction that causes the bounding box to get larger.
  • Adjust the unix driver to avoid unnecessary calls to fchown().
  • Add interfaces sqlite3_quota_ferror() and sqlite3_quota_file_available() to the test_quota.c module.
  • The sqlite3_create_module() and sqlite3_create_module_v2() interfaces return SQLITE_MISUSE on any attempt to overload or replace a virtual table module. The destructor is always called in this case, in accordance with historical and current documentation.
  • SQLITE_SOURCE_ID: "2012-06-11 02:05:22 f5b5a13f7394dc143aa136f1d4faba6839eaa6dc"
  • SHA1 for sqlite3.c: ff0a771d6252545740ba9685e312b0e3bb6a641b


Download:
http://www.sqlite.org/download.html
0

#10 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 04. September 2012 - 16:59

Sqlite 3.7.14

Changelog:
  • Drop built-in support for OS/2. If you need to upgrade an OS/2 application to use this or a later version of SQLite, then add an application-defined VFS using the sqlite3_vfs_register() interface. The code removed in this release can serve as a baseline for the application-defined VFS.
  • Ensure that floating point values are preserved exactly when reconstructing a database from the output of the ".dump" command of the command-line shell.
  • Added the sqlite3_close_v2() interface.
  • Updated the command-line shell so that it can be built using SQLITE_OMIT_FLOATING_POINT and SQLITE_OMIT_AUTOINIT.
  • Improvements to the windows makefiles and build processes.
  • Enhancements to PRAGMA integrity_check and PRAGMA quick_check so that they can optionally check just a single attached database instead of all attached databases.
  • Enhancements to WAL mode processing that ensure that at least one valid read-mark is available at all times, so that read-only processes can always read the database.
  • Performance enhancements in the sorter used by ORDER BY and CREATE INDEX.
  • Added the SQLITE_DISABLE_FTS4_DEFERRED compile-time option.
  • Better handling of aggregate queries where the aggregate functions are contained within subqueries.
  • Enhance the query planner so that it will try to use a covering index on queries that make use of or optimization.
  • SQLITE_SOURCE_ID: "2012-09-03 15:42:36 c0d89d4a9752922f9e367362366efde4f1b06f2a"
  • SHA1 for sqlite3.c: 5fdf596b29bb426001f28b488ff356ae14d5a5a6


Download:
http://www.sqlite.org/download.html
0

#11 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 04. Oktober 2012 - 22:31

Sqlite 3.7.14.1

Changelog:
  • Fix a bug (ticket [d02e1406a58ea02d]]) that causes a segfault on a LEFT JOIN that includes an OR in the ON clause.
  • Work around a bug in the optimizer in the VisualStudio-2012 compiler that causes invalid code to be generated when compiling SQLite on ARM.
  • Fix the TCL interface so that the "nullvalue" setting is honored for TCL implementations of SQL functions.
  • SQLITE_SOURCE_ID: "2012-10-04 19:37:12 091570e46d04e84b67228e0bdbcd6e1fb60c6bdb"
  • SHA1 for sqlite3.c: 62aaecaacab3a4bf4a8fe4aec1cfdc1571fe9a44


Download:
http://www.sqlite.org/download.html
0

#12 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 12. Dezember 2012 - 18:30

SQLite 3.7.15

Changelog:
  • Added the sqlite3_errstr() interface.
  • Avoid invoking the sqlite3_trace() callback multiple times when a statement is automatically reprepared due to SQLITE_SCHEMA errors.
  • Added support for Windows Phone 8 platforms
  • Enhance IN operator processing to make use of indices with numeric affinities.
  • Do full-table scans using covering indices when possible, under the theory that an index will be smaller and hence can be scanned with less I/O.
  • Enhance the query optimizer so that ORDER BY clauses are more aggressively optimized, especially in joins where various terms of the ORDER BY clause come from separate tables of the join.
  • Add the ability to implement FROM clause subqueries as coroutines rather that manifesting the subquery into a temporary table.
  • Enhancements the command-line shell:
  • Added the ".print" command
  • Negative numbers in the ".width" command cause right-alignment
  • Add the ".wheretrace" command when compiled with SQLITE_DEBUG
  • Added the busy_timeout pragma.
  • Added the instr() SQL function.
  • Added the SQLITE_FCNTL_BUSYHANDLER file control, used to allow VFS implementations to get access to the busy handler callback.
  • The xDelete method in the built-in VFSes now return SQLITE_IOERR_DELETE_NOENT if the file to be deleted does not exist.
  • Enhanced support for QNX.
  • Work around an optimizer bug in the MSVC compiler when targeting ARM.
  • Bug fix: Avoid various concurrency problems in shared cache mode.
  • Bug fix: Avoid a deadlock or crash if the backup API, shared cache, and the SQLite Encryption Extension are all used at once.
  • Bug fix: SQL functions created using the TCL interface honor the "nullvalue" setting.
  • Bug fix: Fix a 32-bit overflow problem on CREATE INDEX for databases larger than 16GB.
  • Bug fix: Avoid segfault when using the COLLATE operator inside of a CHECK constraint or view in shared cache mode.

SQLITE_SOURCE_ID: "2012-12-12 13:36:53 cd0b37c52658bfdf992b1e3dc467bae1835a94ae"
SHA1 for sqlite3.c: 2b413611f5e3e3b6ef5f618f2a9209cdf25cbcff"


Download:
http://www.sqlite.org/download.html
0

#13 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 20. Dezember 2012 - 05:02

SQLite 3.7.15.1

Changelog:
Fix a bug, introduced in version 3.7.15, that causes a segfault if the AS name of a result column of a SELECT statement is used as a logical term in the WHERE clause. Ticket a7b7803e8d1e869.
SQLITE_SOURCE_ID: "2012-12-19 20:39:10 6b85b767d0ff7975146156a99ad673f2c1a23318"
SHA1 for sqlite3.c: bbbaa68061e925bd4d7d18d7e1270935c5f7e39a


Download:
http://www.sqlite.org/download.html
0

#14 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 09. Januar 2013 - 17:45

SQLite 3.7.15.2

Changelog:
Fix a bug, introduced in version 3.7.15, that causes an ORDER BY clause to be optimized out of a three-way join when the ORDER BY is actually required. Ticket 598f5f7596b055

Download:
http://www.sqlite.org/download.html
0

#15 _d4rkn3ss4ev3r_

  • Gruppe: Gäste

geschrieben 18. März 2013 - 17:06

SQLite 3.7.16

Changelog:
  • Added the PRAGMA foreign_key_check command.
  • Added new extended error codes for all SQLITE_CONSTRAINT errors
  • Added the SQLITE_READONLY_ROLLBACK extended error code for when a database cannot be opened because it needs rollback recovery but is read-only.
  • Added SQL functions unicode(A) and char(X1,...,XN).
  • Performance improvements for PRAGMA incremental_vacuum, especially in cases where the number of free pages is greater than what will fit on a single trunk page of the freelist.
  • Improved optimization of queries containing aggregate min() or max().
  • Enhance virtual tables so that they can potentially use an index when the WHERE clause contains the IN operator.
  • Allow indices to be used for sorting even if prior terms of the index are constrained by IN operators in the WHERE clause.
  • Enhance the PRAGMA table_info command so that the "pk" column is an increasing integer to show the order of columns in the primary key.
  • Enhance the query optimizer to exploit transitive join constraints.
  • Performance improvements in the query optimizer.
  • Allow the error message from PRAGMA integrity_check to be longer than 20000 bytes.
  • Improved name resolution for deeply nested queries.
  • Added the test_regexp.c module as a demonstration of how to implement the REGEXP operator.
  • Improved error messages in the RTREE extension.
  • Enhance the command-line shell so that a non-zero argument to the ".exit" command causes the shell to exit immediately without cleanly shutting down the database connection.
  • Improved error messages for invalid boolean arguments to dot-commands in the command-line shell.
  • Improved error messages for "foreign key mismatch" showing the names of the two tables involved.
  • Remove all uses of umask() in the unix VFS.
  • Added the PRAGMA vdbe_addoptrace and PRAGMA vdbe_debug commands.
  • Change to use strncmp() or the equivalent instead of memcmp() when comparing non-zero-terminated strings.
  • Update cygwin interfaces to omit deprecated API calls.
  • Enhance the spellfix1 extension so that the edit distance cost table can be changed at runtime by inserting a string like 'edit_cost_table=TABLE' into the "command" field.
  • Bug fix: repair a long-standing problem that could cause incorrect query results in a 3-way or larger join that compared INTEGER fields against TEXT fields in two or more places. Ticket fc7bd6358f
  • Bug fix: Issue an error message if the 16-bit reference counter on a view overflows due to an overly complex query.
  • Bug fix: Avoid leaking memory on LIMIT and OFFSET clauses in deeply nested UNION ALL queries.
  • Bug fix: Make sure the schema is up-to-date prior to running pragmas table_info, index_list, index_info, and foreign_key_list.

Download:
http://www.sqlite.org/download.html
0

Thema verteilen:


  • 2 Seiten +
  • 1
  • 2

1 Besucher lesen dieses Thema
Mitglieder: 0, Gäste: 1, unsichtbare Mitglieder: 0