History log of /PHP-5.5/ext/pgsql/pgsql.c (Results 151 – 175 of 474)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 2c511712 13-Apr-2005 Antony Dovgal

disable pg_cmdtuples() too, if there is no pg_affected_rows()


# cba30657 13-Apr-2005 Derick Rethans

- MFH43: Fixed bug #32699 (pg_affected_rows() was defined when it was not
available).


Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11
# 030ebaaa 25-Mar-2005 Christopher Kings-Lynne

(PHP pg_unescape_bytea) Use libpq version of PQunescapeBytea if it exists.

# The version in libpq is newer and faster than the one in PHP, but it is
# necessary for me to add a string co

(PHP pg_unescape_bytea) Use libpq version of PQunescapeBytea if it exists.

# The version in libpq is newer and faster than the one in PHP, but it is
# necessary for me to add a string copy for freeing purposes. This copy
# is only needed in Windows AFAIK, how can I detect that?

show more ...


# e8bd3b9b 25-Mar-2005 Ilia Alshanetsky

Slightly safer code.


Revision tags: php-5.0.4RC2, php-4.3.11RC2
# e2b87e62 22-Mar-2005 Christopher Kings-Lynne

Tweak some #if's to be more orthogonal.

(PHP pg_set_error_verbosity) New function to set PostgreSQL error verbosity

(PHP pg_copy_from) Use non-deprecated API if it is available

Tweak some #if's to be more orthogonal.

(PHP pg_set_error_verbosity) New function to set PostgreSQL error verbosity

(PHP pg_copy_from) Use non-deprecated API if it is available

(PHP pg_copy_to) Use non-deprecated API if it is available

show more ...


# 4d462349 20-Mar-2005 foobar

- Fixed a warning (might also be an error with some exotic compiler)


# 721d34be 20-Mar-2005 Christopher Kings-Lynne

Two of the diagnostic definitions were added in 8.0. Add appropriate #ifdefs.


# 3dd44c30 19-Mar-2005 Christopher Kings-Lynne

Another oversight - make sure constants related to pg_result_error_field are #if'd as well as the function itself


# 28ec3abf 19-Mar-2005 Christopher Kings-Lynne

Minor oversight in #if for an internal function


# 1168c306 19-Mar-2005 Christopher Kings-Lynne

Added several new functions to support the PostgreSQL v3 protocol
introduced in PostgreSQL 7.4.

(PHP pg_transaction_status) New function to get in-transaction status of

Added several new functions to support the PostgreSQL v3 protocol
introduced in PostgreSQL 7.4.

(PHP pg_transaction_status) New function to get in-transaction status of
a database connection.

(PHP pg_query_params) New function to allow execution of parameterized
queries.

(PHP pg_prepare) New function to allow preparing named queries.

(PHP pg_execute) New function to allow execution of named prepared
queries.

(PHP pg_send_query_params) New function that is the async equivalent of
pg_query_params.

(PHP pg_send_prepare) New function that is the async equivalent of
pg_prepare.

(PHP pg_send_execute) New function that is the async equivalent of
pg_execute.

(PHP pg_result_error_field) New function that allows highly detailed
error information, most importantly the
SQLSTATE error code

# Regression tests are included for all but 2 functions, the rest will
# follow shortly. Docs will also follow shortly.

show more ...


Revision tags: php-5.0.4RC1, php-4.3.11RC1, RELEASE_0_2_4
# 4a133ae7 14-Feb-2005 Edin Kadribasic

ws fix


# 70e08494 14-Feb-2005 Edin Kadribasic

Added pg_field_type_oid() function


Revision tags: RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2, 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, 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, RELEASE_0_1
# 56f8195f 19-Jul-2004 Andi Gutmans

- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
used to return "" and not bool(false). It's not worth keeping it because
STR_FREE() and zval_dtor() always have

- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
used to return "" and not bool(false). It's not worth keeping it because
STR_FREE() and zval_dtor() always have to check for it and it slows down
the general case. In addition, it seems that empty_string has been abused
quite a lot, and was used not only for setting zval's but generally in
PHP code instead of "", which wasn't the intention. Last but not least,
nuking empty_string should improve stability as I doubt every place
correctly checked if they are not mistakenly erealloc()'ing it or
calling efree() on it.
NOTE: Some code is probably broken. Each extension maintainer should
check and see that my changes are OK. Also, I haven't had time to touch
PECL yet. Will try and do it tomorrow.

show more ...


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, php-4.3.7RC1, RELEASE_0_1_1
# ca5c6a1e 12-May-2004 Ilia Alshanetsky

Fixed bug #28374 (Possible unterminated loop inside
_php_pgsql_trim_message()).


Revision tags: php-5.0.0RC2
# 8694cd13 22-Apr-2004 Ilia Alshanetsky

Fixed possible crash inside pg_copy_(to|from) function if delimiter is more
then 1 character long.


Revision tags: php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1, php-4.3.5, php-4.3.5RC4, php-5.0.0RC1
# 5442d722 18-Mar-2004 Ilia Alshanetsky

Fixed bug #27300 (Improved regex for pg_convert()).

# Patch by benjcarson at digitaljunkies dot ca


Revision tags: php-5.0.0RC1RC2
# b83663e0 15-Mar-2004 Marcus Boerger

Keep BC of pg_fetch_object


# 0ace9f48 15-Mar-2004 Marcus Boerger

Bugfix #27597 pg_fetch_array not returning false .


Revision tags: php-5.0.0RC1RC1, RELEASE_0_2_0
# 81f05c18 25-Feb-2004 Ard Biesheuvel

Wordsize fixes


Revision tags: php-4.3.5RC3, php-5.0.0b4
# 30171a75 12-Feb-2004 Zeev Suraski

zend_default_classes.h -> zend_exceptions.h


Revision tags: php-5.0.0b4RC1, php-4.3.5RC2
# 194509f0 29-Jan-2004 Ilia Alshanetsky

Fixed bug #27007 (missing connection closure when connect fails in pgsql).


Revision tags: RELEASE_1_3b6, php_ibase_before_split, php-4.3.5RC1
# 3b7da774 11-Jan-2004 Ilia Alshanetsky

Fixed bug #26864 (pg_(update|delete) ignore PGSQL_DML_EXEC option).


# dbeb4158 08-Jan-2004 Andi Gutmans

- A belated happy holidays and PHP 5


# 57b7eb9d 22-Dec-2003 Ilia Alshanetsky

Missing bit for bug #26625.


Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1
# 82ec523a 16-Dec-2003 Ilia Alshanetsky

Fixed Bug #26625 (pg_convert sets NULL incorrectly for character data
types).


12345678910>>...19