summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite
Commit message (Collapse)AuthorAgeFilesLines
* - Add new testMarcus Boerger2005-02-271-0/+77
|
* upgrade bundled sqlite to sqlite 3.1.3Wez Furlong2005-02-2762-5570/+11078
|
* Alan: moved your fields away, but reserved you a pointer.Wez Furlong2005-02-261-3/+6
| | | | | | | | | | | | | Changed PDO::lastInsertId() to have following proto: string PDO::lastInsertId([string name]) this allows arbitrary unique identitifers to be returned from the driver. The optional name parameter is for databases that require additional contextual information to be able to return the correct identifier. None currently use it, but pgsql will be on the list of drivers that do.
* fix line endingsWez Furlong2005-02-263-3/+3
|
* - Drop driver name from generic tests and reserve those names for driverMarcus Boerger2005-02-2414-13/+13
| | | | | | specific tests. # Well a little design correction
* - Delay ctor call so that it can overwrite everything and the data canMarcus Boerger2005-02-231-10/+2
| | | | | already be accessed from the ctor.
* - Add new testsMarcus Boerger2005-02-231-0/+58
|
* - Add new testsMarcus Boerger2005-02-233-0/+309
|
* - Add new testMarcus Boerger2005-02-211-0/+76
|
* - Show warningsMarcus Boerger2005-02-211-0/+2
|
* - Attempt at an unified test suiteMarcus Boerger2005-02-2012-128/+57
|
* - Add testMarcus Boerger2005-02-201-0/+123
|
* - Update testsMarcus Boerger2005-02-201-19/+15
|
* - Update testMarcus Boerger2005-02-201-20/+45
|
* - Add testMarcus Boerger2005-02-191-0/+35
|
* - Add testMarcus Boerger2005-02-191-0/+57
|
* - Add PDO_FETCH_GROUP testMarcus Boerger2005-02-191-0/+69
|
* - Update/Add testsMarcus Boerger2005-02-195-28/+171
|
* - Add first testsMarcus Boerger2005-02-193-0/+175
|
* symlinked pdo drivers under ext.Wez Furlong2005-02-171-8/+8
| | | | | | | | | | Enabled PDO and PDO_SQLITE by default. Fixup PDO header detection so that it searches in the correct order, and correctly picks up the headers when building from outside of the source tree. TODO: make pdo_XXX auto-enable when XXX is enabled. Volunteers welcome.
* correct backwards logicWez Furlong2005-02-131-1/+1
|
* Probably fix pecl vs bundled-shared buildWez Furlong2005-02-131-2/+1
|
* prep for releaseWez Furlong2005-02-122-3/+4
|
* Fix bundled sqlite build (doh!)Wez Furlong2005-02-121-1/+1
|
* prep for releaseWez Furlong2005-02-102-2/+2
|
* Fixed compile warnings.Ilia Alshanetsky2005-02-092-20/+12
|
* proper fix for PECL Bug #3412Wez Furlong2005-02-091-4/+9
|
* update with changesWez Furlong2005-02-091-5/+9
|
* Add PDO_ATTR_TIMEOUT support.Wez Furlong2005-02-092-5/+26
| | | | | Fix PECL Bug #3391
* update ready for release.Wez Furlong2005-02-093-13/+12
| | | | | Disable dependency macro for compatibility with existing PHP 5.0.x releases.
* updateWez Furlong2005-02-071-1/+1
|
* update for api changesWez Furlong2005-02-062-2/+2
|
* Eliminate unused parameter.Wez Furlong2005-01-212-4/+4
| | | | | | Don't start a transaction when asking for a cursor with pgsql. Fix parameter binding for sqlite3
* Allow drivers to select bind emulation on a per statement basisWez Furlong2005-01-181-1/+1
|
* be aware of scrollable cursors; sqlite doesn't support themWez Furlong2005-01-122-1/+8
|
* touch generated file to avoid implicit yacc rule from eating itWez Furlong2005-01-121-1/+1
|
* jumbo commit; implement sqlstate error codes.Wez Furlong2005-01-07102-55/+102557
| | | | | Bundle sqlite3
* add proper depWez Furlong2004-12-311-0/+1
|
* hmmmmm. Bound params *were* working this way before, but now it seems thatWez Furlong2004-12-262-3/+3
| | | | | I have to bind them as text.
* fix build issuesWez Furlong2004-12-252-3/+3
|
* *cough* de-bogusify driver registration.Wez Furlong2004-10-261-30/+4
| | | | | (what was I smoking??)
* Removing clucking debug and tweak the reset callWez Furlong2004-09-261-2/+1
|
* meta data for sqlite3.Wez Furlong2004-09-262-1/+71
| | | | | Fix repeated executes when the entire rowset has not been consumed.
* add entry for liveness checkWez Furlong2004-09-231-1/+2
|
* Add additional include search pathEdin Kadribasic2004-09-201-1/+1
|
* Add package.xmlWez Furlong2004-09-191-0/+54
| | | | | (not quite ready for release)
* Use NO_PERM code hereWez Furlong2004-09-191-1/+1
|
* make it build on win32Wez Furlong2004-09-192-8/+13
|
* Add transaction support.Wez Furlong2004-09-191-5/+106
| | | | | Add authorizer/safe_mode support
* First cut at a PDO driver for SQLite 3.xWez Furlong2004-09-199-0/+784
Features: - native prepare/execute and bound parameters. - finally supports binary data (via bound parameter api) - full unicode/utf-8 support Missing: - UDF functions - authorizer hooks for safe_mode/open_basedir restrictions You need to download, compile and install sqlite3 yourself; we're not bundling it (at least, not yet).