Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | use & and check for the right value of result_type | Antony Dovgal | 2005-05-10 | 1 | -2/+7 | |
| | ||||||
* | fix #32904 (pg_get_notify() ignores result_type parameter) | Antony Dovgal | 2005-05-10 | 1 | -2/+2 | |
| | ||||||
* | Prevent double free. | Ilia Alshanetsky | 2005-05-03 | 1 | -2/+5 | |
| | ||||||
* | disable pg_cmdtuples() too, if there is no pg_affected_rows() | Antony Dovgal | 2005-04-13 | 1 | -0/+2 | |
| | ||||||
* | - MFH43: Fixed bug #32699 (pg_affected_rows() was defined when it was not | Derick Rethans | 2005-04-13 | 2 | -0/+6 | |
| | | | | | available). | |||||
* | fix typo | Antony Dovgal | 2005-04-03 | 1 | -1/+1 | |
| | ||||||
* | (PHP pg_unescape_bytea) Use libpq version of PQunescapeBytea if it exists. | Christopher Kings-Lynne | 2005-03-25 | 5 | -11/+19 | |
| | | | | | | | # 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? | |||||
* | Slightly safer code. | Ilia Alshanetsky | 2005-03-25 | 1 | -1/+1 | |
| | ||||||
* | - Ensure that ext/pgsql tests work when linked against 7.2 or lower libpq | Christopher Kings-Lynne | 2005-03-23 | 6 | -215/+239 | |
| | ||||||
* | Tweak some #if's to be more orthogonal. | Christopher Kings-Lynne | 2005-03-22 | 7 | -7/+128 | |
| | | | | | | | | | (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 | |||||
* | - Fixed a warning (might also be an error with some exotic compiler) | foobar | 2005-03-20 | 1 | -1/+1 | |
| | ||||||
* | Two of the diagnostic definitions were added in 8.0. Add appropriate #ifdefs. | Christopher Kings-Lynne | 2005-03-20 | 2 | -4/+17 | |
| | ||||||
* | - Add missing skipif part | Marcus Boerger | 2005-03-19 | 2 | -2/+8 | |
| | ||||||
* | Another oversight - make sure constants related to pg_result_error_field are ↵ | Christopher Kings-Lynne | 2005-03-19 | 1 | -0/+2 | |
| | | | | #if'd as well as the function itself | |||||
* | Add regression tests for pg_transaction_status and pg_result_error_field | Christopher Kings-Lynne | 2005-03-19 | 2 | -0/+16 | |
| | ||||||
* | Minor oversight in #if for an internal function | Christopher Kings-Lynne | 2005-03-19 | 1 | -1/+1 | |
| | ||||||
* | Added several new functions to support the PostgreSQL v3 protocol | Christopher Kings-Lynne | 2005-03-19 | 8 | -2/+1017 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | |||||
* | ws fix | Edin Kadribasic | 2005-02-14 | 1 | -1/+1 | |
| | ||||||
* | Added pg_field_type_oid() function | Edin Kadribasic | 2005-02-14 | 2 | -0/+31 | |
| | ||||||
* | Added missing defines (#31751) | Edin Kadribasic | 2005-02-14 | 1 | -1/+1 | |
| | ||||||
* | MFB_4_3: Quote macro names in AC_DEFUN() | foobar | 2004-12-30 | 1 | -1/+1 | |
| | ||||||
* | Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/lib | Joe Orton | 2004-11-03 | 1 | -1/+1 | |
| | | | | | to support multi-ABI platforms. | |||||
* | - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE() | Andi Gutmans | 2004-07-19 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | 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. | |||||
* | Fixed bug #28374 (Possible unterminated loop inside | Ilia Alshanetsky | 2004-05-12 | 1 | -1/+1 | |
| | | | | | _php_pgsql_trim_message()). | |||||
* | Fixed possible crash inside pg_copy_(to|from) function if delimiter is more | Ilia Alshanetsky | 2004-04-22 | 1 | -4/+4 | |
| | | | | | then 1 character long. | |||||
* | Fixed bug #27300 (Improved regex for pg_convert()). | Ilia Alshanetsky | 2004-03-18 | 1 | -4/+51 | |
| | | | | | # Patch by benjcarson at digitaljunkies dot ca | |||||
* | Keep BC of pg_fetch_object | Marcus Boerger | 2004-03-15 | 2 | -11/+10 | |
| | ||||||
* | Bugfix #27597 pg_fetch_array not returning false . | Marcus Boerger | 2004-03-15 | 2 | -3/+67 | |
| | ||||||
* | Show the connect result | Marcus Boerger | 2004-03-09 | 1 | -3/+6 | |
| | ||||||
* | Wordsize fixes | Ard Biesheuvel | 2004-02-25 | 1 | -3/+4 | |
| | ||||||
* | zend_default_classes.h -> zend_exceptions.h | Zeev Suraski | 2004-02-12 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug #27007 (missing connection closure when connect fails in pgsql). | Ilia Alshanetsky | 2004-01-29 | 1 | -0/+3 | |
| | ||||||
* | - Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5 | foobar | 2004-01-17 | 1 | -3/+3 | |
| | ||||||
* | Fixed bug #26864 (pg_(update|delete) ignore PGSQL_DML_EXEC option). | Ilia Alshanetsky | 2004-01-11 | 1 | -2/+8 | |
| | ||||||
* | Use pg_config if it can be found. | Marcus Boerger | 2004-01-09 | 1 | -19/+35 | |
| | ||||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -2/+2 | |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | |||||
* | - A belated happy holidays and PHP 5 | Andi Gutmans | 2004-01-08 | 1 | -2/+2 | |
| | ||||||
* | Removed a useless define. | Ilia Alshanetsky | 2003-12-29 | 1 | -2/+0 | |
| | ||||||
* | Make test work with PostgreSQL 7.4 | Ilia Alshanetsky | 2003-12-23 | 1 | -2/+2 | |
| | ||||||
* | Missing bit for bug #26625. | Ilia Alshanetsky | 2003-12-22 | 1 | -3/+2 | |
| | ||||||
* | Fixed Bug #26625 (pg_convert sets NULL incorrectly for character data | Ilia Alshanetsky | 2003-12-16 | 1 | -1/+1 | |
| | | | | | types). | |||||
* | MFB: Use standard header locations | Edin Kadribasic | 2003-12-11 | 1 | -4/+4 | |
| | ||||||
* | Removed unused variable. | Ilia Alshanetsky | 2003-12-07 | 1 | -6/+0 | |
| | ||||||
* | MFB: PHP_PQ_ERROR() change | Marcus Boerger | 2003-12-06 | 1 | -53/+46 | |
| | ||||||
* | #args, reinsert skipif for extension check | Marcus Boerger | 2003-12-06 | 1 | -0/+3 | |
| | ||||||
* | Do not dynamically load the extension in skipif | Marcus Boerger | 2003-12-06 | 1 | -7/+0 | |
| | ||||||
* | Get rid of PHPAPI usage. | Edin Kadribasic | 2003-12-05 | 3 | -27/+24 | |
| | | | | | | Enable shared build in the new php5 build system Check for the correct header. | |||||
* | Make this build using new build system | Wez Furlong | 2003-12-04 | 1 | -0/+19 | |
| | ||||||
* | Modify pg_fetch_object() to be able to instantiate a selected class and pass | Marcus Boerger | 2003-09-06 | 5 | -63/+158 | |
| | | | | | parameters to the constructor. Update tests and add a test for these features. | |||||
* | Bugfix #25404 | Marcus Boerger | 2003-09-06 | 1 | -1/+3 | |
| |