mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 22:28:47 -04:00
updated bundled SQLite to 3.7.7.1
This commit is contained in:
parent
e0c7dce891
commit
7e674159f9
3 changed files with 7 additions and 6 deletions
2
Changes
2
Changes
|
@ -1,7 +1,7 @@
|
||||||
Changes for Perl extension DBD-SQLite
|
Changes for Perl extension DBD-SQLite
|
||||||
|
|
||||||
1.34_01 to be released
|
1.34_01 to be released
|
||||||
- Updated to SQLite 3.7.7 (ISHIGAKI)
|
- Updated to SQLite 3.7.7.1 (DUNCAND)
|
||||||
- Made util/getsqlite.pl work properly for SQLite 3.7.5+ (ISHIGAKI)
|
- Made util/getsqlite.pl work properly for SQLite 3.7.5+ (ISHIGAKI)
|
||||||
|
|
||||||
1.33 Mon 20 May 2011
|
1.33 Mon 20 May 2011
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
** This file is an amalgamation of many separate C source files from SQLite
|
** This file is an amalgamation of many separate C source files from SQLite
|
||||||
** version 3.7.7. By combining all the individual C code files into this
|
** version 3.7.7.1. By combining all the individual C code files into this
|
||||||
** single large file, the entire code can be compiled as a single translation
|
** single large file, the entire code can be compiled as a single translation
|
||||||
** unit. This allows many compilers to do optimizations that would not be
|
** unit. This allows many compilers to do optimizations that would not be
|
||||||
** possible if the files were compiled separately. Performance improvements
|
** possible if the files were compiled separately. Performance improvements
|
||||||
|
@ -650,9 +650,9 @@ extern "C" {
|
||||||
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
|
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
|
||||||
** [sqlite_version()] and [sqlite_source_id()].
|
** [sqlite_version()] and [sqlite_source_id()].
|
||||||
*/
|
*/
|
||||||
#define SQLITE_VERSION "3.7.7"
|
#define SQLITE_VERSION "3.7.7.1"
|
||||||
#define SQLITE_VERSION_NUMBER 3007007
|
#define SQLITE_VERSION_NUMBER 3007007
|
||||||
#define SQLITE_SOURCE_ID "2011-06-23 19:49:22 4374b7e83ea0a3fbc3691f9c0c936272862f32f2"
|
#define SQLITE_SOURCE_ID "2011-06-28 17:39:05 af0d91adf497f5f36ec3813f04235a6e195a605f"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** CAPI3REF: Run-Time Library Version Numbers
|
** CAPI3REF: Run-Time Library Version Numbers
|
||||||
|
@ -59049,6 +59049,7 @@ SQLITE_PRIVATE void sqlite3VdbeMakeReady(
|
||||||
memset(zCsr, 0, zEnd-zCsr);
|
memset(zCsr, 0, zEnd-zCsr);
|
||||||
zCsr += (zCsr - (u8*)0)&7;
|
zCsr += (zCsr - (u8*)0)&7;
|
||||||
assert( EIGHT_BYTE_ALIGNMENT(zCsr) );
|
assert( EIGHT_BYTE_ALIGNMENT(zCsr) );
|
||||||
|
p->expired = 0;
|
||||||
|
|
||||||
/* Memory for registers, parameters, cursor, etc, is allocated in two
|
/* Memory for registers, parameters, cursor, etc, is allocated in two
|
||||||
** passes. On the first pass, we try to reuse unused space at the
|
** passes. On the first pass, we try to reuse unused space at the
|
||||||
|
|
|
@ -107,9 +107,9 @@ extern "C" {
|
||||||
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
|
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
|
||||||
** [sqlite_version()] and [sqlite_source_id()].
|
** [sqlite_version()] and [sqlite_source_id()].
|
||||||
*/
|
*/
|
||||||
#define SQLITE_VERSION "3.7.7"
|
#define SQLITE_VERSION "3.7.7.1"
|
||||||
#define SQLITE_VERSION_NUMBER 3007007
|
#define SQLITE_VERSION_NUMBER 3007007
|
||||||
#define SQLITE_SOURCE_ID "2011-06-23 19:49:22 4374b7e83ea0a3fbc3691f9c0c936272862f32f2"
|
#define SQLITE_SOURCE_ID "2011-06-28 17:39:05 af0d91adf497f5f36ec3813f04235a6e195a605f"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** CAPI3REF: Run-Time Library Version Numbers
|
** CAPI3REF: Run-Time Library Version Numbers
|
||||||
|
|
Loading…
Add table
Reference in a new issue