summaryrefslogtreecommitdiff
path: root/ext/pdo
Commit message (Collapse)AuthorAgeFilesLines
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-038-8/+8
|
* sed -i "s#1997-2009#1997-2010#g" **/*.re **/*.y **/*.lSebastian Bergmann2010-01-031-1/+1
|
* - Updated pdo_pgsql tests to be 8.5+ friendlyMatteo Beccati2009-12-251-1/+1
|
* - Fixed memory leak when E_STRICT message is gettedFelipe Pena2009-12-141-0/+4
|
* - Fixed bug #50458 (PDO::FETCH_FUNC fails with Closures)Pierrick Charron2009-12-142-82/+38
|
* - Fixed bug #49174 (crash on queryString set)Felipe Pena2009-12-131-2/+2
|
* - Fixed bug #50445 (PDO-ODBC stored procedure call from Solaris 64-bit ↵Felipe Pena2009-12-111-4/+6
| | | | | | | causes seg fault). (Original patch by davbrown4 at yahoo dot com)
* - Added MAKE_COPY_ZVAL(ppzv, pzv) macroFelipe Pena2009-12-081-6/+2
|
* Fixed bug #50323 (Allow use of ; in values via ;; in PDO DSN even in the ↵Pierrick Charron2009-12-061-4/+36
| | | | middle of a string).
* Fixed bug #50323 (Allow use of ; in values via ;; in PDO DSN).Ilia Alshanetsky2009-12-061-1/+1
|
* Fixed bug #45120 (PDOStatement->execute() returns true then false for same ↵Pierrick Charron2009-12-031-0/+1
| | | | statement).
* Don't ignore the 2nd parameter to PDO's quote() method that identifies the ↵Ilia Alshanetsky2009-11-201-2/+1
| | | | data type
* - Fixed bug #49521 (PDO fetchObject sets values before calling constructor) Felipe Pena2009-11-152-26/+31
| | | | | (patch by Pierrick)
* - Fixed PDORow and PDOStatement crashes when instantiating throught ReflectionFelipe Pena2009-10-123-29/+58
|
* - Revert my mistakeFelipe Pena2009-07-191-2/+2
|
* - Fixed module check (Related to bug #48785)Felipe Pena2009-07-191-2/+2
|
* - Removed trailing zeros on double to string conversion (noticed on #48924)Felipe Pena2009-07-161-1/+1
|
* MFHMatteo Beccati2009-05-121-0/+104
| | | | | | | | - Moved test for bug #44861 to PDO commons and added support for pdo_oci # This allows scrollable cursors to be tested with all the drivers # that currently support them (pgsql and oci), ensuring a consistent # behaviour. The test is skipped when using other drivers.
* MFH: Fix protoKalle Sommer Nielsen2009-05-021-1/+1
|
* MFH:Matteo Beccati2009-04-231-2/+1
| | | | | | | | - Reverted previous fix for bug #46274 and properly fixed it - Fixed bug #48060 # Also added tests for pdo_oci as it's the only other driver currently # using streams: no regression found
* MFH:Matteo Beccati2009-04-023-57/+179
| | | | | | | | - Fixed bug #44173 (PDO->query() parameter parsing/checking needs an update) # The changeset is longer than really needed because pdo_stmt.c was # refactored to remove the "goto"
* - Fix typoFelipe Pena2009-03-261-1/+1
|
* MFH: - Fixed bug #47769 (Strange extends PDO)Felipe Pena2009-03-262-11/+33
|
* MFH:Felipe Pena2009-03-232-1/+52
| | | | | | - Fixed bug #44409 (PDO::FETCH_SERIALIZE calls __construct()) Patch by: matteo at beccati dot com
* MFHAndrei Zmievski2009-03-121-1/+1
|
* MFH: Fix #46542 Extending PDO class with a __call() function doesn't workJohannes Schlüter2009-02-171-1/+1
| | | | | as expected
* - Missing "DROP TABLE"Felipe Pena2009-02-161-0/+3
|
* - Added missing void param check and arginfoFelipe Pena2009-02-131-8/+26
|
* MFH:Felipe Pena2009-02-131-15/+20
| | | | | | - Fixed bug #43831 ($this gets mangled when extending PDO with persistent connection) - Fixed bug #45432 (PDO: persistent connection leak)
* - MFH: Fixed bug #47297 (pdo_033.phpt fails on PgSQL)Felipe Pena2009-02-041-1/+3
| | | | | Patch by matteo at beccati dot com
* create temporary db in the current dir and cleanup on completionAntony Dovgal2009-01-051-2/+4
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-318-8/+8
|
* MFH: Bump copyright year, 2 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* we do not need the strndup() now that php_stream_printf() handles non-null ↵Nuno Lopes2008-12-121-3/+1
| | | | terminated strings correctly
* Fixed a possible corruption inside PDOStatement::debugDumpParams()Ilia Alshanetsky2008-12-111-1/+3
|
* MFHAntony Dovgal2008-12-031-2/+4
|
* Fixed error message typoMatt Wilmas2008-12-031-1/+1
|
* Fixed bug #46409 (__invoke method called outside of object context when ↵Dmitry Stogov2008-11-272-15/+15
| | | | using array_map)
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-172-13/+0
|
* - MFH: Better fixFelipe Pena2008-11-132-15/+9
|
* - MFH: declaration goes first...Pierre Joye2008-11-132-4/+4
|
* - MFH: Fixed invalid readsFelipe Pena2008-11-132-3/+3
|
* - After readying Johannes's mail, the conclusion that a "smarter" systemDavid Coallier2008-11-102-3/+45
| | | | | | | | | | | | | to find out if the return_value had the correct number of elements was definitely needed. Simply added a difference to both dbh and stmt to make sure that the error info always has 3 elements. - Bug #44154 (pdo->errorInfo doesn't always return three elements) - Now pdo->errorInfo() AND stmt->errorInfo() return three elements. - [DOC] Make sure that not only the pdo->errorInfo() is returning 3 elms, but also the PDOStatement object
* MFH:Felipe Pena2008-11-051-4/+4
| | | | | | - Fixed wrong check - Improved test
* - MFHDavid Coallier2008-11-041-0/+7
| | | | | | | | | | | | - Bug #44154: [DOC] Return 3 elements at all times. If the dbh stmt doesn't have an error code we used to return an array with one element. For the sake of consistency and verification of returned values at userland we are now returning an array with 3 elements. Note the two last elements are null but present - Bug #4413: [DOC] If the error code returned by the DBH is null, we return a null value. This is used in order to help with empty error codes.
* - MFH: Improved fixFelipe Pena2008-11-031-4/+8
|
* MFH:Felipe Pena2008-11-031-0/+1
| | | | | | - Fixed endless loop in PDOStatement::debugDumpParams() patch by: Jonah H. Harris <jonah.harris at gmail dot com>
* - MFH: Fixed bug #44327 (PDORow::queryString property & numeric offsets / Crash)Felipe Pena2008-11-031-0/+3
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-022-0/+13
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-242-13/+0
|