#
0eb0b781 |
| 07-Jul-2005 |
Dmitry Stogov |
Fixed memory leaks |
Revision tags: php-4.4.0RC2, php-5.1.0b2, php-4.4.0RC1 |
|
#
13ac7169 |
| 11-Jun-2005 |
Wez Furlong |
and the lesson is, test everything before you commit at 2am |
#
f124c208 |
| 11-Jun-2005 |
Wez Furlong |
couple of conceptual errors here |
Revision tags: php-5.1.0b1, php-5.0.1b1 |
|
#
49e7b3da |
| 10-Jun-2005 |
Wez Furlong |
Fix a dumb bug that would effecively ignore persistent connections and create a new one each time. Add a hook for persistent connections: it is called when the object goes out of sco
Fix a dumb bug that would effecively ignore persistent connections and create a new one each time. Add a hook for persistent connections: it is called when the object goes out of scope, and offers the driver an opportunity to release per-request scoped data at the right time. This hook is used by pdo_sqlite to unregister UDFs, which are dangerous to keep registered between requests.
show more ...
|
#
5c16028e |
| 10-Jun-2005 |
Wez Furlong |
initialize type of function |
#
9b3929a7 |
| 26-May-2005 |
Marcus Boerger |
- Need to make PDO::__construct() final to prevent SEGV it isn't called 1st |
#
3be50385 |
| 28-Apr-2005 |
Ilia Alshanetsky |
Allocation checks around persistent allocs that can fail. |
Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2, php-4.3.11RC2 |
|
#
c9108bba |
| 21-Mar-2005 |
Marcus Boerger |
- Simplify code (only implement handlers that are necessary) - Fix handling of read only property 'queryString' - Fix overloading - Move class init code to their defining .c files for sim
- Simplify code (only implement handlers that are necessary) - Fix handling of read only property 'queryString' - Fix overloading - Move class init code to their defining .c files for simplification - Mark class PDORow as final until there's a need to inherit this and someone implements the handlers correct then.
show more ...
|
Revision tags: php-5.0.4RC1, php-4.3.11RC1 |
|
#
f7ebff80 |
| 09-Mar-2005 |
Wez Furlong |
"thou shalt not throw exceptions except in really exceptional circumstances." The only allowed places to throw them directly are from within the PDO class constructors or when dealing wi
"thou shalt not throw exceptions except in really exceptional circumstances." The only allowed places to throw them directly are from within the PDO class constructors or when dealing with transaction level attributes, where "hard-failure" is a feature. All other errors should use the PDO error handling mechanism and respect the users selected error mode.
show more ...
|
#
de1d8b91 |
| 09-Mar-2005 |
Wez Furlong |
prep package file for release. fix my favourite typo. fix compile warnings |
#
eb330a95 |
| 28-Feb-2005 |
Marcus Boerger |
- Fix warning |
#
d072f6de |
| 28-Feb-2005 |
Marcus Boerger |
- Changing handler table definitively results in SEGVs |
#
bc1c0c2e |
| 28-Feb-2005 |
Joe Orton |
Fix type mismatch. |
#
2c5b2fc1 |
| 26-Feb-2005 |
Wez Furlong |
Alan: moved your fields away, but reserved you a pointer. Changed PDO::lastInsertId() to have following proto: string PDO::lastInsertId([string name]) this allows a
Alan: moved your fields away, but reserved you a pointer. 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.
show more ...
|
#
b786b93b |
| 23-Feb-2005 |
Marcus Boerger |
- Delay ctor call so that it can overwrite everything and the data can already be accessed from the ctor. |
#
77cf78ca |
| 23-Feb-2005 |
Marcus Boerger |
- Make ctor args optional |
#
994006ab |
| 22-Feb-2005 |
Marcus Boerger |
- Need to also revert operator |
#
d235a2bf |
| 22-Feb-2005 |
Marcus Boerger |
- Put this back in (forgot to revert) |
#
cb9658fe |
| 22-Feb-2005 |
Marcus Boerger |
- Revert signature of PDO:prepare() old: proto object PDO::prepare(string statment [, array driver_options [, string classname ]]) now: proto object PDO::prepare(string statment [, array
- Revert signature of PDO:prepare() old: proto object PDO::prepare(string statment [, array driver_options [, string classname ]]) now: proto object PDO::prepare(string statment [, array options]) param 'classname' and and 'ctor_args' are now set through options using index PDO_ATTR_STATEMENT_CLASS - Change all deriver_options parameters to 'options' to reflect the fact that they may contain statement as well as driver specific flags
show more ...
|
#
3c743e3a |
| 22-Feb-2005 |
Marcus Boerger |
- Allow to derive PDOStatement - Verify fetch modes - Add last fetch mode PDO_FETCH_FUNC (only valid inside fetchAll()) that allows to completley customize the way data is treated on th
- Allow to derive PDOStatement - Verify fetch modes - Add last fetch mode PDO_FETCH_FUNC (only valid inside fetchAll()) that allows to completley customize the way data is treated on the fly
show more ...
|
#
18985acc |
| 22-Feb-2005 |
Marcus Boerger |
- Call dtor |
Revision tags: RELEASE_0_2_4, RELEASE_0_2_3 |
|
#
1051e707 |
| 13-Feb-2005 |
Wez Furlong |
Fixes the crash part of PECL Bug #3434. |
Revision tags: RELEASE_0_2_2 |
|
#
91eab3e5 |
| 11-Feb-2005 |
Wez Furlong |
typo |
#
ccd24266 |
| 11-Feb-2005 |
Wez Furlong |
Fix PDO::query() for drivers that emulate bound parameters. |
Revision tags: RELEASE_0_2_1 |
|
#
94d5261f |
| 09-Feb-2005 |
Wez Furlong |
cosmetic changes |