#
d72347f7 |
| 04-Dec-2005 |
Antony Dovgal |
MFH: fix #35543 (php crash when calling non existing method of a class that extends PDO) |
Revision tags: RELEASE_2_0_2 |
|
#
d0ea27b8 |
| 28-Nov-2005 |
Wez Furlong |
API for connection dependent objects to add/del refs to dbh's. |
Revision tags: php-5.1.1 |
|
#
bb2f034e |
| 25-Nov-2005 |
Wez Furlong |
well, what do you know, it does do something. |
#
dfdd1e4c |
| 24-Nov-2005 |
Wez Furlong |
CLASSTYPE is an internal flag. Closes PECL #5640. |
#
8e49bacf |
| 24-Nov-2005 |
Ilia Alshanetsky |
Fixed bug #35358 (Incorrect error messages for PDO class constants). |
Revision tags: php-5.1.0 |
|
#
40209337 |
| 20-Nov-2005 |
Ilia Alshanetsky |
Fixed bug #35303 (PDO prepare() crashes with invalid parameters). |
#
493c9fcf |
| 19-Nov-2005 |
Antony Dovgal |
MFH: fix #35293 (PDO segfaults when using persistent connections) |
Revision tags: php-4.4.2RC1, RELEASE_0_9_3, php-5.1.0RC6, php-5.1.0RC5, RELEASE_2_0_1, RELEASE_1_0RC2, php-4.4.1, php-5.1.0RC4, RELEASE_0_9_2 |
|
#
dcd78795 |
| 27-Oct-2005 |
Wez Furlong |
fixes PECL Bug #5589 |
Revision tags: RELEASE_0_9_1 |
|
#
ea544cf3 |
| 23-Oct-2005 |
Wez Furlong |
Closes PECL Bug #5750; uri: dsn is not handled correctly. Patch from curt@php.net |
Revision tags: php-5.1.0RC3, php-5.1.0RC2, php-4.4.1RC1, RELEASE_0_9_0 |
|
#
ffe605f2 |
| 03-Oct-2005 |
Antony Dovgal |
free cls_methods correctly and fix segfault on shutdown (no bug entry and MFB, though..) |
#
9a0bed98 |
| 03-Oct-2005 |
Ilia Alshanetsky |
MFH: Fixed memory leak. |
#
612dab64 |
| 03-Oct-2005 |
Wez Furlong |
fix type |
#
a750f195 |
| 02-Oct-2005 |
Wez Furlong |
Fix Bug #34687; error information from query() not passed back |
#
991a29cf |
| 02-Oct-2005 |
Marcus Boerger |
- MFH PDOException base |
#
ca9dd7d8 |
| 02-Oct-2005 |
Marcus Boerger |
- Add PDO::setAttribute(PDO::ATTR_STATEMENT_CLASS) |
#
932346c0 |
| 01-Oct-2005 |
Wez Furlong |
Allow compilation with PHP 5.0.x Closes PECL #5514 |
#
4dff36f6 |
| 20-Sep-2005 |
Ilia Alshanetsky |
MFH: Allow overloading of PDO constructor. |
#
bfe844e4 |
| 20-Sep-2005 |
Ilia Alshanetsky |
MFH: Make PDO use class constants |
#
7e762989 |
| 18-Sep-2005 |
Wez Furlong |
move pdo_drivers -> PDO::getAvailableDrivers as part of namespacing sweep. |
Revision tags: RELEASE_1_0RC1 |
|
#
efe24c02 |
| 10-Sep-2005 |
Wez Furlong |
add __sleep and __wakeup functions to prevent serialize/deserialize from being used on PDO objects. Refs PECL #5217 |
Revision tags: PRE_NEW_OCI8_EXTENSION, php-5.1.0RC2_PRE, php-5.0.5, php-5.0.5RC2, php-5.0.5RC1, php-5.1.0RC1, BEFORE_UNICODE_MERGE, RELEASE_2_0_0, RELEASE_0_9, php-5.1.0b3 |
|
#
664ebfa4 |
| 12-Jul-2005 |
Wez Furlong |
expand oracle null handling compatability by offering the ability to convert NULLs into empty strings as well as the other way around. It still doesn't help a great deal in the long run, but
expand oracle null handling compatability by offering the ability to convert NULLs into empty strings as well as the other way around. It still doesn't help a great deal in the long run, but at least the option is there. Make sure hash tables are nulled out to avoid double freeing them.
show more ...
|
Revision tags: php-4.4.0 |
|
#
5fe5da90 |
| 09-Jul-2005 |
Ilia Alshanetsky |
Safer way of allowing 'blank' user/pass. # Thanks Wez. |
#
0b1931a8 |
| 08-Jul-2005 |
Ilia Alshanetsky |
Fix needed for PostgreSQL driver to allow $user & $pass to be supplied via DSN as NULL. |
#
49c18828 |
| 08-Jul-2005 |
Wez Furlong |
Add a PDO_ATTR_STRINGIFY_FETCHES attribute, which is used to convert integer or floating point values into strings during fetch. This is a compatibility hack for drivers that return native t
Add a PDO_ATTR_STRINGIFY_FETCHES attribute, which is used to convert integer or floating point values into strings during fetch. This is a compatibility hack for drivers that return native types rather than string representations. We use this flag in the test suite to persuade postgres tests to pass.
show more ...
|
#
da7d537d |
| 07-Jul-2005 |
Wez Furlong |
populate the new dbh->driver field. Implement PDO_ATTR_DRIVER_NAME. |