summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/sqlite_driver.c
Commit message (Collapse)AuthorAgeFilesLines
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* Merge branch 'PHP-5.3' into PHP-5.4Johannes Schlüter2012-06-221-1/+1
|\ | | | | | | | | | | | | | | * PHP-5.3: Improve check for :memory: pseudo-filename in SQlite Conflicts: ext/sqlite3/sqlite3.c
| * Improve check for :memory: pseudo-filename in SQliteJohannes Schlüter2012-06-221-1/+1
| |
| * - fix #55226, WSPierre Joye2012-01-311-6/+6
| |
| * - fix #55226, fix buildPierre Joye2012-01-311-2/+1
| |
| * createCollation() for pdo_sqlite as wellRasmus Lerdorf2012-01-291-0/+125
| | | | | | | | | | Closes bug #55226
| * - Year++Felipe Pena2012-01-011-1/+1
| |
| * Avoid strcpy() usageIlia Alshanetsky2011-08-081-7/+7
| |
| * - Make usage of new PHP_FE_END macroFelipe Pena2011-07-251-1/+1
| |
| * - Year++Felipe Pena2011-01-011-1/+1
| |
| * - Completed the fix for bug #52010Felipe Pena2010-06-201-1/+1
| | | | | | | | | | # Fixing pdo drivers
* | - fix #55226, WSPierre Joye2012-01-311-2/+1
| |
* | - fix #55226, fix buildPierre Joye2012-01-311-2/+1
| |
* | createCollation() for pdo_sqlite as wellRasmus Lerdorf2012-01-291-0/+126
| | | | | | | | | | Closes bug #55226
* | - Year++Felipe Pena2012-01-011-1/+1
| |
* | Avoid strcpy() usageIlia Alshanetsky2011-08-081-7/+7
| |
* | - Make usage of new PHP_FE_END macroFelipe Pena2011-07-251-1/+1
| |
* | - Year++Felipe Pena2011-01-011-1/+1
| |
* | - Completed the fix for bug #52010Felipe Pena2010-06-201-1/+1
| | | | | | | | | | # Fixing pdo drivers
* | Removed safe_modeKalle Sommer Nielsen2010-04-261-7/+2
|/ | | | | | | * Removed ini options, safe_mode* * Removed --enable-safe-mode --with-exec-dir configure options on Unix * Updated extensions, SAPI's and core * php_get_current_user() is now declared in main.c, thrus no need to include safe_mode.h anymore
* Fixed bug #50728 (All PDOExceptions hardcode 'code' property to 0)Ilia Alshanetsky2010-01-121-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* - Added MAKE_COPY_ZVAL(ppzv, pzv) macroFelipe Pena2009-12-081-9/+3
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH:Felipe Pena2008-12-021-2/+5
| | | | | | - Fixed memory leaks - Added new tests (Coverage++)
* Fixed bug #46409 (__invoke method called outside of object context when ↵Dmitry Stogov2008-11-271-1/+1
| | | | using array_map)
* - MFH: Added parameter TSRMLS_DC in zend_is_callable()Felipe Pena2008-08-021-3/+3
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-2/+2
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Additional expand_filepath() checksIlia Alshanetsky2006-09-161-0/+4
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* Proper error handling for persistent connections.Ilia Alshanetsky2005-12-201-3/+3
|
* Fixed possible memory corruption.Ilia Alshanetsky2005-12-191-1/+10
|
* MFH: nuke php3 legacyfoobar2005-12-061-2/+2
|
* MFH: Allow overloading of PDO constructor.Ilia Alshanetsky2005-09-201-0/+2
|
* Only set authorizer if we intend to use it (safe_mode or open_basedir).Ilia Alshanetsky2005-07-271-1/+3
|
* implement the 'request shutdown' hook; this allows us to register UDFs onWez Furlong2005-06-101-11/+12
| | | | | | | | persistent handles safely. (it is dangerous to keep them registered between requests, as there are 0 guarantees that functions with the same name are even present on the next hit, let alone that the zvals we cache point to the right place.
* add sqliteCreateAggregate()Wez Furlong2005-06-101-32/+165
|
* finish implementation of sqliteCreateFunction().Wez Furlong2005-06-101-13/+39
|
* work in progress on UDF.Wez Furlong2005-06-101-3/+187
| | | | | Something is hokey in HEAD, checking it in to try it on another box.
* 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.
* Fixed compile warnings.Ilia Alshanetsky2005-02-091-4/+2
|
* Add PDO_ATTR_TIMEOUT support.Wez Furlong2005-02-091-1/+13
| | | | | Fix PECL Bug #3391
* update for api changesWez Furlong2005-02-061-1/+1
|
* Eliminate unused parameter.Wez Furlong2005-01-211-2/+2
| | | | | | 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-121-0/+6
|
* jumbo commit; implement sqlstate error codes.Wez Furlong2005-01-071-17/+36
| | | | | Bundle sqlite3