#
6fd9e5a6 |
| 02-Jul-2005 |
Ilia Alshanetsky |
Fixed memory leak on PDO_FETCH_OBJ.
|
Revision tags: php-4.4.0RC2, php-5.1.0b2, php-4.4.0RC1, php-5.1.0b1, php-5.0.1b1 |
|
#
cf5a6f81 |
| 08-Jun-2005 |
Dmitry Stogov |
Fixed zval_ptr_dtor(&return_value) on uninicialized zval
|
#
def27b99 |
| 17-May-2005 |
Ilia Alshanetsky |
As per PDO meeting on PHP|Tropics fetchSingle is being renamed to fetchColumn and now supports specification of the column to retrieve.
|
#
d30a9ee9 |
| 27-Apr-2005 |
Ilia Alshanetsky |
removed debug code.
|
#
7dd430ff |
| 22-Apr-2005 |
Wez Furlong |
fix bug #32795
|
Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11 |
|
#
d27be112 |
| 24-Mar-2005 |
Marcus Boerger |
- Fix null handling found by thies
|
Revision tags: 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 ...
|
#
7b2bee1d |
| 19-Mar-2005 |
Marcus Boerger |
- Fix warnings by doing it the Zend way
|
Revision tags: php-5.0.4RC1, php-4.3.11RC1 |
|
#
5248f59d |
| 12-Mar-2005 |
Wez Furlong |
show list of PDO drivers in phpinfo. Highlight a possible problem area; iterator leaks when used in foreach(), at least with sqlite2 driver.
|
#
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
|
#
9c08e3cc |
| 07-Mar-2005 |
Marcus Boerger |
- Update signature
|
#
6ce9bcc3 |
| 28-Feb-2005 |
Marcus Boerger |
- Need to drop ce until engine gets fixed
|
#
fdc3fce3 |
| 28-Feb-2005 |
Marcus Boerger |
- Fix missapplied logic inversion
|
#
fef7cb4e |
| 27-Feb-2005 |
Marcus Boerger |
- Disable direct serializing for PHP 5.0
|
#
6b18b88b |
| 27-Feb-2005 |
Marcus Boerger |
- Allow default fetch mode to contain fetch flags
|
#
03a4a8c1 |
| 27-Feb-2005 |
Marcus Boerger |
- Add some fetch column related capailities - Add direct (classtype based) unserializing capabilities
|
#
40d180a8 |
| 23-Feb-2005 |
Marcus Boerger |
- Reorganize ctor_args handling (fixes some bugs)
|
#
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 ...
|
#
d56ce00b |
| 20-Feb-2005 |
Marcus Boerger |
- Add fetch flag PDO_FETCH_CLASSTYPE
|
#
3239a565 |
| 20-Feb-2005 |
Marcus Boerger |
- Only call the ctor once
|
#
5a262034 |
| 20-Feb-2005 |
Marcus Boerger |
- Fix memleak and optimize PDO_FETCH_CLASS
|
#
883ee834 |
| 20-Feb-2005 |
Marcus Boerger |
- Call ctor after initializing the props like regular db exts do
|
#
07a8ea22 |
| 20-Feb-2005 |
Marcus Boerger |
- Need to specify class_entry in PDO_FETCH_CLASS mode
|
#
b788dc9d |
| 19-Feb-2005 |
Marcus Boerger |
- Add fetch mode PDO_FETCH_UNIQUE
|