summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-07-18 10:31:35 +0000
committerWez Furlong <wez@php.net>2004-07-18 10:31:35 +0000
commit0a925c90d40c4fa3d5f417071463277083499ae4 (patch)
treee79db3c8eff5090f29f19548f6a0512f613fe2aa
parenta4b685078bf08157ba6d653b9b1bf1326f6647a1 (diff)
downloadphp-git-0a925c90d40c4fa3d5f417071463277083499ae4.tar.gz
prep for release.
Touch parse.c to avoid weird implicit bison make rule breaking build
-rw-r--r--ext/sqlite/libsqlite/src/parse.c2
-rw-r--r--ext/sqlite/package.xml12
-rw-r--r--ext/sqlite/sqlite.c6
3 files changed, 14 insertions, 6 deletions
diff --git a/ext/sqlite/libsqlite/src/parse.c b/ext/sqlite/libsqlite/src/parse.c
index 463536915c..64e3eb3df8 100644
--- a/ext/sqlite/libsqlite/src/parse.c
+++ b/ext/sqlite/libsqlite/src/parse.c
@@ -1,5 +1,5 @@
/* Driver template for the LEMON parser generator.
-** The author disclaims copyright to this source code.
+** The author disclaims copyright to this source code.
*/
/* First off, code is include which follows the "include" declaration
** in the input file. */
diff --git a/ext/sqlite/package.xml b/ext/sqlite/package.xml
index 186e5cf5ac..6d48b49806 100644
--- a/ext/sqlite/package.xml
+++ b/ext/sqlite/package.xml
@@ -35,15 +35,17 @@
without running a separate RDBMS process.
This extension allows you to access SQLite databases from within PHP.
- Windows binary available from:
- http://snaps.php.net/win32/PECL_STABLE/php_sqlite.dll
+ Windows binary for PHP 4.3 is available from:
+ http://snaps.php.net/win32/PECL_4_3/php_sqlite.dll
+
+ **Note that this extension is built into PHP 5 by default**
</description>
<license>PHP</license>
<release>
<state>stable</state>
-<version>1.0.2</version>
-<date>2004-07-10</date>
+<version>1.0.3</version>
+<date>2004-07-18</date>
<notes>
Upgraded libsqlite to version 2.8.14
@@ -143,7 +145,7 @@ this case is to use the new sqlite_exec() function instead. (Stas)
<version>1.0.2</version>
<date>2004-01-17</date>
<notes>
-Upgraded libsqlite to version 2.9.11
+Upgraded libsqlite to version 2.8.11
Fixed crash bug in module shutdown
Fixed crash with empty queries
Fixed column name mangling bug
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c
index 540ccb49a1..107207115c 100644
--- a/ext/sqlite/sqlite.c
+++ b/ext/sqlite/sqlite.c
@@ -668,6 +668,12 @@ PHP_MINIT_FUNCTION(sqlite)
#ifdef SQLITE_FORMAT
REGISTER_LONG_CONSTANT("SQLITE_FORMAT", SQLITE_FORMAT, CONST_CS|CONST_PERSISTENT);
#endif
+#ifdef SQLITE_RANGE
+ REGISTER_LONG_CONSTANT("SQLITE_RANGE", SQLITE_RANGE, CONST_CS|CONST_PERSISTENT);
+#endif
+#ifdef SQLITE_NOTADB
+ REGISTER_LONG_CONSTANT("SQLITE_NOTADB", SQLITE_NOTADB, CONST_CS|CONST_PERSISTENT);
+#endif
REGISTER_LONG_CONSTANT("SQLITE_ROW", SQLITE_ROW, CONST_CS|CONST_PERSISTENT);
REGISTER_LONG_CONSTANT("SQLITE_DONE", SQLITE_DONE, CONST_CS|CONST_PERSISTENT);