Bug 478297 - Upgrade to SQLite 3.6.10. r=asuth Note: this checkin is to fix bug 497792)

git-svn-id: svn://10.0.0.236/trunk@257521 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sdwilsh%shawnwilsher.com 2009-06-17 17:55:50 +00:00
parent 032aafafdb
commit cbe8af62a5
4 changed files with 6789 additions and 4615 deletions

View File

@ -128,7 +128,7 @@ LIBGNOME_VERSION=2.0
STARTUP_NOTIFICATION_VERSION=0.8
DBUS_VERSION=0.60
LCMS_VERSION=1.17
SQLITE_VERSION=3.6.7
SQLITE_VERSION=3.6.10
MSMANIFEST_TOOL=

View File

@ -1,6 +1,6 @@
This is sqlite 3.6.7
This is sqlite 3.6.10
-- Shawn Wilsher <me@shawnwilsher.com>, 04/2009
-- Shawn Wilsher <me@shawnwilsher.com>, 06/2009
See http://www.sqlite.org/ for more info.

File diff suppressed because it is too large Load Diff

View File

@ -30,7 +30,7 @@
** the version number) and changes its name to "sqlite3.h" as
** part of the build process.
**
** @(#) $Id: sqlite.h.in,v 1.420 2008/12/16 13:46:30 drh Exp $
** @(#) $Id: sqlite.h.in,v 1.421 2008/12/30 06:24:58 danielk1977 Exp $
*/
#ifndef _SQLITE3_H_
#define _SQLITE3_H_
@ -107,8 +107,8 @@ extern "C" {
** with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z
** are the major version, minor version, and release number.
*/
#define SQLITE_VERSION "3.6.7"
#define SQLITE_VERSION_NUMBER 3006007
#define SQLITE_VERSION "3.6.10"
#define SQLITE_VERSION_NUMBER 3006010
/*
** CAPI3REF: Run-Time Library Version Numbers {H10020} <S60100>
@ -2397,7 +2397,7 @@ int sqlite3_set_authorizer(
#define SQLITE_PRAGMA 19 /* Pragma Name 1st arg or NULL */
#define SQLITE_READ 20 /* Table Name Column Name */
#define SQLITE_SELECT 21 /* NULL NULL */
#define SQLITE_TRANSACTION 22 /* NULL NULL */
#define SQLITE_TRANSACTION 22 /* Operation NULL */
#define SQLITE_UPDATE 23 /* Table Name Column Name */
#define SQLITE_ATTACH 24 /* Filename NULL */
#define SQLITE_DETACH 25 /* Database Name NULL */
@ -2407,6 +2407,7 @@ int sqlite3_set_authorizer(
#define SQLITE_CREATE_VTABLE 29 /* Table Name Module Name */
#define SQLITE_DROP_VTABLE 30 /* Table Name Module Name */
#define SQLITE_FUNCTION 31 /* NULL Function Name */
#define SQLITE_SAVEPOINT 32 /* Operation Savepoint Name */
#define SQLITE_COPY 0 /* No longer used */
/*