History log of /PHP-5.6/ext/pdo_pgsql/pgsql_driver.c (Results 101 – 125 of 140)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 3fe8b559 28-Jun-2005 Ilia Alshanetsky

Fixed double-free bug.


# f04cbae3 28-Jun-2005 Ilia Alshanetsky

fixed oid retrieval.


Revision tags: php-5.1.0b2, php-4.4.0RC1, php-5.1.0b1, php-5.0.1b1
# fa0e534f 18-May-2005 Ilia Alshanetsky

Various compiler warning fixes.


# 4f778ca3 13-May-2005 Wez Furlong

patch by Christopher Kings-Lynne, slightly modified


Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2, php-4.3.11RC2, php-5.0.4RC1, php-4.3.11RC1
# 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 ...


# a455c7ab 20-Feb-2005 Marcus Boerger

- Shutup notices


Revision tags: RELEASE_0_2_4, RELEASE_0_2_3
# 9b394af9 12-Feb-2005 Ilia Alshanetsky

Simplify code and fix compiler warning.


Revision tags: RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2
# accdde8c 06-Feb-2005 Edin Kadribasic

Finalized pgsql LOB support using native pgsql bytea type.
If paramater is bound with type PDO_PARAM_LOB the quoter function
gets a hint that specific LOB type quoting should be used:

Finalized pgsql LOB support using native pgsql bytea type.
If paramater is bound with type PDO_PARAM_LOB the quoter function
gets a hint that specific LOB type quoting should be used:

$stmt->bindParam(":lob", $lob, PDO_PARAM_LOB);

show more ...


# bf77a393 05-Feb-2005 Edin Kadribasic

Decode pgsql LOB objects (bytea type) on fetch


# 996b464e 03-Feb-2005 Ilia Alshanetsky

Use the created connection string.


# 60f5e66a 23-Jan-2005 Edin Kadribasic

Add support for fetching meta data


# 26f97a91 21-Jan-2005 Wez Furlong

Eliminate unused parameter.
Don't start a transaction when asking for a cursor with pgsql.
Fix parameter binding for sqlite3


# a9d98544 18-Jan-2005 Wez Furlong

Allow drivers to select bind emulation on a per statement basis


# 095a6f1e 17-Jan-2005 Edin Kadribasic

Use PQescapeBytea() for quoting. Need to think how to add binary safe
quoting for blobls (pgsql bytea type).
Fixes #2818


# ef0de01b 13-Jan-2005 Wez Furlong

Take a blind stab at implementing scrollable cursors for pgsql.
We allocate a unique cursor name for each statement, so that we
don't interfere with other open statement handles on the same d

Take a blind stab at implementing scrollable cursors for pgsql.
We allocate a unique cursor name for each statement, so that we
don't interfere with other open statement handles on the same dbh.

Note, however, that we force a new transaction for each open scrollable cursor
(postgres requires cursors to be used inside a transaction). This is okay,
except for the case where a scrollable cursor is opened, an update is made and
the cursor is closed; closing the cursor commits the transaction that was begun
when it was opened.

It might well be better to avoid the transaction in PDO and force the user to
be aware of the requirements of cursors and explicitly initiate the transaction
themselves.

This is all untested code; it compiles and looks like it will work, but I
encourage someone with a real postgres setup to actually sit down and try to
use it.

show more ...


# 02d6b65c 07-Jan-2005 Wez Furlong

lame implementation of SQLSTATE error codes


Revision tags: php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1, PRE_NEW_VM_GEN_PATCH, php-5.0.2
# 1fc2b791 23-Sep-2004 Ilia Alshanetsky

Make handle error messages handle persistent situations better.


# 72040f7f 23-Sep-2004 Wez Furlong

more method table adjustments.
mysql driver needs work with the error message stuff.
Other drivers need a bit more auditing...


Revision tags: php-4.3.9, php-5.0.2RC1, php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2, php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1
# 65ae3572 29-Jul-2004 Ilia Alshanetsky

Proper parameter separators for PostgreSQL connection initialization.


# 0b40c1d8 28-Jul-2004 Marcus Boerger

- Trim error messages


# 7557b388 28-Jul-2004 Marcus Boerger

- Fix shutdown problems


# d5923d91 28-Jul-2004 Wez Furlong

equivalent segv/shutdown fix for failed connect


Revision tags: RELEASE_0_1
# 0d085b25 20-Jul-2004 Ilia Alshanetsky

Allow pgsql driver to accept login & password as separate parameters like
other PDO drivers can.


Revision tags: php-5.0.0RC4, php-5.0.0, php-4.3.8, php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1
# 9cc4fb18 26-May-2004 Edin Kadribasic

PQfreemem() is only available in 7.4


# c7a2cf73 25-May-2004 Edin Kadribasic

Whitespace: editor in the wrong mode ;)


123456