Sara Golemon
9432c96dc6
Update SQLITE2 (non-PDO parts at least) for PHP6/Unicode
...
Change default build of bundled libsqlite to utf8 mode
iso-8859 mode is still available using --disable-sqlite-utf8
2006-10-07 17:49:30 +00:00
foobar
e5057f7c22
use PHP_CHECK_PDO_INCLUDES
2005-06-14 01:44:16 +00:00
foobar
8e2efc351b
- Show "none" when nothing is found
2005-06-07 16:47:33 +00:00
foobar
2018d2df32
We only need LEMON for bundled stuff
2005-06-02 20:06:37 +00:00
Hartmut Holzgraefe
f41bf6123b
typo fix
2005-05-30 15:57:54 +00:00
Hartmut Holzgraefe
43ba3897c2
gracefully handle changes of the parse.y lemon file,
...
process it with lemon if available, else just keep the .c file from CVS
not doing so leads to make using its implicit .y->.c rule here and
bison doesn't really understand lemon syntax
2005-05-30 14:15:40 +00:00
foobar
a20383ba06
- Unify the "configure --help" texts
2005-05-29 23:17:16 +00:00
foobar
626253940e
- Added PHP_INSTALL_HEADERS() macro
...
- Fixed several VPATH build issues
- Changed all awk calls to use $AWK
- Changed all mkdir calls to use "$php_shtool mkdir"
2005-05-07 02:51:53 +00:00
foobar
379394b82c
cleanup
2005-05-06 22:51:05 +00:00
Rasmus Lerdorf
802c8e83c9
Don't do PDO here if PDO is disabled
2005-04-16 00:04:27 +00:00
Wez Furlong
52dd9f028e
Implement a PDO driver for sqlite 2
2005-03-11 23:57:01 +00:00
Marcus Boerger
7956ca0211
- SQLite depends on SPL if it is present
...
- Add SQLiteResult::count()
- SQLiteResult implements Countable if present
2005-02-15 21:09:42 +00:00
Wez Furlong
0aa82c3c83
same fix here
2005-02-13 03:15:11 +00:00
foobar
a139dbf9cc
- Fix outside-source-tree builds. Always include generated header files
...
with #include <some_header.h> to make sure the correct file is used.
2005-01-09 21:05:06 +00:00
Joe Orton
2685ca935f
Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/lib
...
to support multi-ABI platforms.
2004-11-03 14:32:52 +00:00
Wez Furlong
a0957e24b7
Fix #28402 : no need for -ldl
2004-07-10 12:49:34 +00:00
Wez Furlong
e563b4eafa
Upgrade bundled library to 2.8.14 + misc fixes
...
(http://www.sqlite.org/cvstrac/chngview?cn=1742 )
2004-07-10 12:27:51 +00:00
Stig Bakken
330d9f6352
SQLITE_ENCODING should be UTF8 rather than UTF-8
2004-02-03 08:38:22 +00:00
Ilia Alshanetsky
4b1fadbf1c
Proper configure switch for sqlite.
2004-01-29 17:21:16 +00:00
Rui Hirokawa
de07b4bbc1
added utf8 support option for sqlite >= 2.8.9.
2004-01-11 02:07:46 +00:00
Ilia Alshanetsky
a4ea8eb44e
Upgrade bundled libsqlite to 2.8.9
2004-01-08 14:25:01 +00:00
Rui Hirokawa
05c78af854
revert my previous patch because utf-8 support is still in experimental status.
2003-12-28 14:38:28 +00:00
Rui Hirokawa
585a12d3be
added warning message.
2003-12-28 14:26:57 +00:00
Rui Hirokawa
af9b015afc
added a option to select character encoding for sqlite.
2003-12-28 14:07:33 +00:00
foobar
82af3ff733
OS_UNIX/OS_WIN are set in the bundled libsqlite sources.
2003-07-19 12:44:46 +00:00
Wez Furlong
607b6501ed
Add sqlite session handler.
...
Modified (quite a bit!) patch from John Coggeshall.
It compiles, but it otherwise untested.
session.save_path == path to actual database file for the session.
eg: session.save_path=/tmp/mysite-session.db
2003-07-01 13:07:37 +00:00
Sterling Hughes
211ca9d9e5
enable sqlite by default
2003-06-25 00:18:01 +00:00
Wez Furlong
30fc9e152f
Update bundled library to 2.8.3 + patches from sqlite author to enable
...
authorization checks for the ATTACH database command.
2003-06-06 22:44:57 +00:00
Wez Furlong
c44fcc1dc5
WS
2003-06-05 13:03:15 +00:00
Wez Furlong
80e7f7001d
Update bundled library to version 2.8.2.
...
Make OnUpdateInt compatible with ZE2.
Fix the makefile fragment for non-gnu makes
2003-06-04 22:40:00 +00:00
Edin Kadribasic
0d46a490f7
Allign.
2003-05-01 22:12:06 +00:00
Wez Furlong
276e721f96
Tidy up package.xml file.
...
Cleaner approach for setting THREADSAFE and NDEBUG for bundled libsqlite.
Tested with: static, shared and shared with separate build roots under a
non-zts build only.
2003-04-20 16:09:16 +00:00
Edin Kadribasic
3f18d16957
Kluge, but it seems to work now in both phpize and bundled builds.
...
Only in there until Wez fixes it for real.
2003-04-20 03:03:28 +00:00
Edin Kadribasic
a10c8a3e1c
Erm, this works much better :)
2003-04-20 01:25:59 +00:00
Edin Kadribasic
3f95e99afc
Set appropriate flags when compiling bundled lib in thread-safe
...
and debug modes.
2003-04-20 01:22:08 +00:00
Wez Furlong
ff0d6adda4
Transparently decode binary encoded data.
...
Add a test-case for that process.
When encoding binary data, we mark the string with \x01 as its first character.
When returning data via sqlite_fetch_array(), if the first character is \x01,
then we decode the encoding. This behaviour can be turned off by the optional
last parameter to sqlite_fetch_array(), for compatibility with databases
created with other applications.
2003-04-19 12:54:17 +00:00
Wez Furlong
de7874e11f
Little fix for people building sqlite as a static extension
2003-04-19 11:47:17 +00:00
Wez Furlong
8ed14ff16f
Implement sqlite_unbuffered_query(), which works similarly to the mysql
...
function with a similar name.
Change sqlite_query() to use the same mechanism as the unbuffered query; this
moves the bulk of the memory allocations into the ZE memory manager, and will
hopefully be more efficient and less at risk of leaks.
2003-04-18 12:22:43 +00:00
Wez Furlong
3eb3805d47
Really fix build
2003-04-17 12:49:44 +00:00
Wez Furlong
b09dc0e03a
Hopefully fix build...
2003-04-17 12:38:42 +00:00
Wez Furlong
f56412eace
Update build files
2003-04-17 11:57:29 +00:00
Wez Furlong
25954d1d72
This commit was generated by cvs2svn to compensate for changes in r123706,
...
which included commits to RCS files with non-trunk default branches.
2003-04-17 01:29:45 +00:00