Changes 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.
This commit is contained in:
adam 2011-02-02 09:03:09 +00:00
parent 36ca8d1a25
commit 32f4b3f2d0
7 changed files with 34 additions and 24 deletions

View file

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.1.1.1 2010/11/15 20:27:03 dholland Exp $
# $NetBSD: Makefile,v 1.2 2011/02/02 09:03:09 adam Exp $
DISTNAME= sqlite_docs_3_7_3
PKGNAME= sqlite3-docs-3.7.3
DISTNAME= sqlite-doc-3070500
PKGNAME= sqlite3-docs-3.7.5
CATEGORIES= databases
MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \
http://www.sqlite.org/
@ -19,7 +19,6 @@ LICENSE= public-domain
PKG_DESTDIR_SUPPORT= user-destdir
WRKSRC= ${WRKDIR}/sqlite-3_7_3-docs
USE_LANGUAGES= # none
USE_TOOLS+= find xargs pax

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2010/11/15 20:27:06 dholland Exp $
@comment $NetBSD: PLIST,v 1.2 2011/02/02 09:03:09 adam Exp $
share/doc/sqlite3/34to35.html
share/doc/sqlite3/35to36.html
share/doc/sqlite3/about.html
@ -24,6 +24,7 @@ share/doc/sqlite3/c3ref/blob_bytes.html
share/doc/sqlite3/c3ref/blob_close.html
share/doc/sqlite3/c3ref/blob_open.html
share/doc/sqlite3/c3ref/blob_read.html
share/doc/sqlite3/c3ref/blob_reopen.html
share/doc/sqlite3/c3ref/blob_write.html
share/doc/sqlite3/c3ref/busy_handler.html
share/doc/sqlite3/c3ref/busy_timeout.html
@ -133,6 +134,7 @@ share/doc/sqlite3/c3ref/sqlite3.html
share/doc/sqlite3/c3ref/status.html
share/doc/sqlite3/c3ref/step.html
share/doc/sqlite3/c3ref/stmt.html
share/doc/sqlite3/c3ref/stmt_readonly.html
share/doc/sqlite3/c3ref/stmt_status.html
share/doc/sqlite3/c3ref/strnicmp.html
share/doc/sqlite3/c3ref/table_column_metadata.html
@ -178,17 +180,18 @@ share/doc/sqlite3/doc_target_crossref.html
share/doc/sqlite3/doclist.html
share/doc/sqlite3/docs.html
share/doc/sqlite3/download.html
share/doc/sqlite3/eqp.html
share/doc/sqlite3/famous.html
share/doc/sqlite3/faq.html
share/doc/sqlite3/favicon.ico
share/doc/sqlite3/features.html
share/doc/sqlite3/fileformat.html
share/doc/sqlite3/fileformat2.html
share/doc/sqlite3/fileio.html
share/doc/sqlite3/foreignkeys.html
share/doc/sqlite3/formatchng.html
share/doc/sqlite3/fts3.html
share/doc/sqlite3/howtocompile.html
share/doc/sqlite3/howtocorrupt.html
share/doc/sqlite3/images/2005osaward.gif
share/doc/sqlite3/images/SQLite.gif
share/doc/sqlite3/images/SQLite_big.gif
@ -262,8 +265,12 @@ share/doc/sqlite3/images/fileformat/tableshortrecord.gif
share/doc/sqlite3/images/fileformat/tabletree.gif
share/doc/sqlite3/images/fileformat/vfs_role.gif
share/doc/sqlite3/images/fileformat/write_transaction.gif
share/doc/sqlite3/images/foreignlogos/Airbus1.jpg
share/doc/sqlite3/images/foreignlogos/AirbusLogo2.jpg
share/doc/sqlite3/images/foreignlogos/adobe-logo.gif
share/doc/sqlite3/images/foreignlogos/adobe.gif
share/doc/sqlite3/images/foreignlogos/airbus1.gif
share/doc/sqlite3/images/foreignlogos/airbus2.gif
share/doc/sqlite3/images/foreignlogos/apple.gif
share/doc/sqlite3/images/foreignlogos/bloomberg.gif
share/doc/sqlite3/images/foreignlogos/dropbox.gif
@ -419,6 +426,7 @@ share/doc/sqlite3/lang_expr.html
share/doc/sqlite3/lang_indexedby.html
share/doc/sqlite3/lang_insert.html
share/doc/sqlite3/lang_keywords.html
share/doc/sqlite3/lang_naming.html
share/doc/sqlite3/lang_reindex.html
share/doc/sqlite3/lang_replace.html
share/doc/sqlite3/lang_savepoint.html
@ -534,9 +542,12 @@ share/doc/sqlite3/releaselog/3_7_0_1.html
share/doc/sqlite3/releaselog/3_7_1.html
share/doc/sqlite3/releaselog/3_7_2.html
share/doc/sqlite3/releaselog/3_7_3.html
share/doc/sqlite3/releaselog/3_7_4.html
share/doc/sqlite3/releaselog/3_7_5.html
share/doc/sqlite3/requirements.html
share/doc/sqlite3/robots.txt
share/doc/sqlite3/rtree.html
share/doc/sqlite3/search
share/doc/sqlite3/selfcontained.html
share/doc/sqlite3/serverless.html
share/doc/sqlite3/sharedcache.html

View file

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.1.1.1 2010/11/15 20:27:06 dholland Exp $
$NetBSD: distinfo,v 1.2 2011/02/02 09:03:09 adam Exp $
SHA1 (sqlite_docs_3_7_3.zip) = 49ef65bfd52f9dc275dd94c3cf10c5720c2de7e5
RMD160 (sqlite_docs_3_7_3.zip) = f44e79c0b299942c1351765c6cd5ac693261e3ed
Size (sqlite_docs_3_7_3.zip) = 3277639 bytes
SHA1 (sqlite-doc-3070500.zip) = d103de0bc344dde0153d170af74d56db0437d770
RMD160 (sqlite-doc-3070500.zip) = 2e84f51d7f755af65fd502d64a44e3f7d0ffbd3a
Size (sqlite-doc-3070500.zip) = 3491310 bytes

View file

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.20 2010/12/09 05:32:05 adam Exp $
# $NetBSD: Makefile,v 1.21 2011/02/02 09:03:09 adam Exp $
DISTNAME= sqlite-tea-3070400
PKGNAME= sqlite3-tcl-3.7.4
DISTNAME= sqlite-tea-3070500
PKGNAME= sqlite3-tcl-3.7.5
CATEGORIES= databases
MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \
http://www.sqlite.org/

View file

@ -1,7 +1,7 @@
$NetBSD: distinfo,v 1.10 2010/12/30 12:35:53 obache Exp $
$NetBSD: distinfo,v 1.11 2011/02/02 09:03:09 adam Exp $
SHA1 (sqlite-tea-3070400.tar.gz) = b78b3f8dc8f99cbd54c495a58a4272ec507b6f8e
RMD160 (sqlite-tea-3070400.tar.gz) = daf492d3f6e1243b11ce0f06a2576ea95fdf5b72
Size (sqlite-tea-3070400.tar.gz) = 1270659 bytes
SHA1 (sqlite-tea-3070500.tar.gz) = 5790d00e376fb0543ca3ddd08180591c93cda52e
RMD160 (sqlite-tea-3070500.tar.gz) = dde4da761db52e7310942014cbc7749c3ffc8228
Size (sqlite-tea-3070500.tar.gz) = 1275046 bytes
SHA1 (patch-aa) = d4d0424eec39ede995c2c408dcf51876072d3fea
SHA1 (patch-ab) = 18b0fac8607da49b368a02d9cd881c5abc179176

View file

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.37 2010/12/17 00:37:34 agc Exp $
# $NetBSD: Makefile,v 1.38 2011/02/02 09:03:09 adam Exp $
DISTNAME= sqlite-autoconf-3070400
PKGNAME= sqlite3-3.7.4
DISTNAME= sqlite-autoconf-3070500
PKGNAME= sqlite3-3.7.5
CATEGORIES= databases
MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \
http://www.sqlite.org/

View file

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.56 2010/12/09 05:32:05 adam Exp $
$NetBSD: distinfo,v 1.57 2011/02/02 09:03:09 adam Exp $
SHA1 (sqlite-autoconf-3070400.tar.gz) = 43848641320cb60fb7f445bc295b9870cdc127be
RMD160 (sqlite-autoconf-3070400.tar.gz) = eb5d575b7dc1951f0c0f2997f50fbf7d206e502d
Size (sqlite-autoconf-3070400.tar.gz) = 1545086 bytes
SHA1 (sqlite-autoconf-3070500.tar.gz) = 4e1338497b8da50b84307191bb3418e9ec5715d7
RMD160 (sqlite-autoconf-3070500.tar.gz) = 8bec6a7bfec1c8786dde0586916b0b99e509b2ce
Size (sqlite-autoconf-3070500.tar.gz) = 1551070 bytes