History log of /PHP-8.0/ext/pdo_pgsql/pgsql_statement.c (Results 126 – 150 of 154)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: RELEASE_0_9, php-5.1.0b3, php-4.4.0
# 858d8277 09-Jul-2005 Ilia Alshanetsky

Added cursor closer handler.
Fixed memory leak.


# 6ee00c81 08-Jul-2005 Wez Furlong

fix leak


# 6377c0cc 08-Jul-2005 Wez Furlong

Fix PECL #4753


# 512af63a 08-Jul-2005 Wez Furlong

rewrite original names to our preferred format


# 2301d931 08-Jul-2005 Ilia Alshanetsky

Some of us don't have PostgreSQL 8.0 :)


# 529d8177 08-Jul-2005 Wez Furlong

Add early support for native prepared statements in pgsql.
Note that some tests now fail; if we can't resolve this in time for the beta,
the prepare code should be disabled (I'll add a flag f

Add early support for native prepared statements in pgsql.
Note that some tests now fail; if we can't resolve this in time for the beta,
the prepare code should be disabled (I'll add a flag for this later today).

show more ...


# 75cfa5c2 03-Jul-2005 Wez Furlong

probable fix for PECL bug #4546


# 7ef1a915 01-Jul-2005 Edin Kadribasic

Fold PQresultErrorField() into a macro


Revision tags: php-4.4.0RC2, 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
# 3e6fce84 23-Mar-2005 Christopher Kings-Lynne

- Use a replacement for PQunescapeBytea so that linking against a pre-7.3
libpq is possible. This is exactly what ext/pgsql currently does.

# I hope this is an acceptable improvement.


Revision tags: php-5.0.4RC1, php-4.3.11RC1
# cdb042f6 10-Mar-2005 Marcus Boerger

- Fix fetching bound vars & tests


Revision tags: RELEASE_0_2_4
# 2c306869 15-Feb-2005 Edin Kadribasic

Fixed bug #3478: handling of 64bit return values on 32bit machine


Revision tags: RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2
# af162668 07-Feb-2005 Wez Furlong

fix pointer indirection (and thus leak)


# 22ff90f7 06-Feb-2005 Edin Kadribasic

Adjust for the new get_col api


# bf77a393 05-Feb-2005 Edin Kadribasic

Decode pgsql LOB objects (bytea type) on fetch


# 95cc2084 05-Feb-2005 Edin Kadribasic

Removed unused variebles.
Return OID as int.


# 1a962e9d 04-Feb-2005 Edin Kadribasic

Get OID of the last inserted row


# 60f5e66a 23-Jan-2005 Edin Kadribasic

Add support for fetching meta data


# d8aa131c 23-Jan-2005 Edin Kadribasic

Store pgsql_type, intval and boolav per column


# 902c2b43 22-Jan-2005 Edin Kadribasic

Remove debug stuff


# e58a8671 22-Jan-2005 Edin Kadribasic

Support for native nulls, bools and ints


# 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


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


# d3ab27f7 12-Jan-2005 Wez Furlong

stub out scrollable cursors


1234567