History log of /PHP-5.6/ext/pdo/pdo.c (Results 76 – 100 of 122)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.0.4RC2, php-4.3.11RC2
# dce82da8 22-Mar-2005 Marcus Boerger

- Add function pdo_drivers()


# 73a6a310 22-Mar-2005 Marcus Boerger

- the driver's key name is not zero terminated, hence we need to either
estrNcpy() it or use the driver struct.
- table headers do not support single column mode so change to two cols
-

- the driver's key name is not zero terminated, hence we need to either
estrNcpy() it or use the driver struct.
- table headers do not support single column mode so change to two cols
- there should be only one table header

show more ...


# 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
# 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.


# de1d8b91 09-Mar-2005 Wez Furlong

prep package file for release.
fix my favourite typo.
fix compile warnings


# fdc3fce3 28-Feb-2005 Marcus Boerger

- Fix missapplied logic inversion


# fef7cb4e 27-Feb-2005 Marcus Boerger

- Disable direct serializing for PHP 5.0


# 03a4a8c1 27-Feb-2005 Marcus Boerger

- Add some fetch column related capailities
- Add direct (classtype based) unserializing capabilities


# 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 ...


# effe989d 23-Feb-2005 Marcus Boerger

- Show that PDOStatement implements Traversable


# 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 ...


# d56ce00b 20-Feb-2005 Marcus Boerger

- Add fetch flag PDO_FETCH_CLASSTYPE


# b788dc9d 19-Feb-2005 Marcus Boerger

- Add fetch mode PDO_FETCH_UNIQUE


# 474fcab6 19-Feb-2005 Marcus Boerger

- Add PDO_FETCH_GROUP to fetchAll()


Revision tags: RELEASE_0_2_4
# 9653864f 18-Feb-2005 Wez Furlong

prep for release


# ef2b59f7 13-Feb-2005 Marcus Boerger

- Expand tests to have it work inside PHP 5.0


# 746d5490 13-Feb-2005 Marcus Boerger

- Use runtimeException as base if present (synch with other dbs)


Revision tags: RELEASE_0_2_3
# 0be93c95 13-Feb-2005 Wez Furlong

prep for release


Revision tags: RELEASE_0_2_2
# 1f06eb1c 11-Feb-2005 Wez Furlong

update in anticipation of a release later tonight


Revision tags: RELEASE_0_2_1
# 69cbb7f9 10-Feb-2005 Wez Furlong

prep for release


# 94d5261f 09-Feb-2005 Wez Furlong

cosmetic changes


Revision tags: RELEASE_0_2
# 5a2cb415 09-Feb-2005 Wez Furlong

update ready for release
# includes big hack to help guide people into running "make install" so
# that the headers get installed; works around a pear bug.


# 36e3ea8c 07-Feb-2005 Wez Furlong

add input/output parameter type flag


# 81664bd2 12-Jan-2005 Wez Furlong

Remove bogus scroll attribute.
Expose cursor constants to the script


12345