Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This commit was manufactured by cvs2svn to create branch 'PHP_5'.PHP-5 | SVN Migration | 2003-02-27 | 60 | -6511/+0 |
| | |||||
* | Remove C++-style comment. (Breaks Sun Forte compiler.) | Justin Erenkrantz | 2003-02-20 | 1 | -1/+1 |
| | |||||
* | Fixed bug: #22306 (pg_lo_seek($h, 0, PGSQL_SEEK_SET) succeeds but returns false) | foobar | 2003-02-20 | 1 | -1/+1 |
| | |||||
* | Correct the spelling of 'supported'. | Jon Parise | 2003-02-10 | 1 | -1/+1 |
| | |||||
* | Fixed one more improper row offset handling. | Yasuo Ohgaki | 2003-02-09 | 1 | -1/+1 |
| | |||||
* | Fixed improper result offset handling. | Yasuo Ohgaki | 2003-02-09 | 1 | -7/+17 |
| | | | | | Prevent error when connection is broken. (optional) | ||||
* | Made the row parameter in pg_result_seek() non-optional, the current | Ilia Alshanetsky | 2003-02-04 | 1 | -9/+4 |
| | | | | | | | | | implementation would result in random behavior if the 2nd argument is not passed. Fixed bug #22042 (pg_result_seek() would never seek to the 1st row in the result due to always seeking to row next to the one requested). Removed dead code from pg_result_seek(). | ||||
* | Removed pointless memory allocation checks. | Ilia Alshanetsky | 2003-01-18 | 1 | -13/+3 |
| | |||||
* | Fixed proto | Yasuo Ohgaki | 2003-01-15 | 1 | -1/+1 |
| | |||||
* | Removed #ifdef NetWare and made the necessary changes in the directory ↵ | Anantha Kesari H Y | 2003-01-06 | 1 | -2/+0 |
| | | | | structure of NetWare. | ||||
* | Makefile added newly and modified the header file for NetWare. | Anantha Kesari H Y | 2003-01-06 | 2 | -0/+172 |
| | |||||
* | - Fixed bug #21232 (Unresolved references to PQsetnonblocking). (Patch by | Derick Rethans | 2003-01-04 | 1 | -2/+2 |
| | | | | | Floyd <floyd@studiodust.com>) | ||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 2 | -2/+2 |
| | |||||
* | MFB: Fix typo | Derick Rethans | 2002-12-21 | 1 | -2/+2 |
| | |||||
* | A better memory leak patch. | Ilia Alshanetsky | 2002-12-16 | 1 | -2/+3 |
| | |||||
* | Fixed a memory leak. | Ilia Alshanetsky | 2002-12-15 | 1 | -1/+1 |
| | |||||
* | Fixed problem with PostgreSQL 7.3 | Yasuo Ohgaki | 2002-11-29 | 1 | -1/+1 |
| | |||||
* | Remove a warning | Yasuo Ohgaki | 2002-11-26 | 1 | -1/+1 |
| | |||||
* | Cleanup state=4 and avoid using sscanf() | Yasuo Ohgaki | 2002-11-25 | 1 | -8/+6 |
| | |||||
* | Use proper form of NUL | Sascha Schumann | 2002-11-24 | 1 | -5/+1 |
| | | | | | Drop superfluous checks for NULL results | ||||
* | null after the erealloc() | Sterling Hughes | 2002-11-24 | 1 | -1/+1 |
| | |||||
* | Added missing '\0' | Yasuo Ohgaki | 2002-11-24 | 1 | -1/+2 |
| | |||||
* | Test for bug #14383 | Marcus Boerger | 2002-11-14 | 1 | -0/+37 |
| | |||||
* | Speed up pg_escape_bytea, from O(n^2) => O(n). My test script speed up | Yasuo Ohgaki | 2002-11-12 | 1 | -6/+9 |
| | | | | | | | from 50 sec to 5 sec. (sscanf is too slow at least under my linux, I might write better function that unescape values later) Use emalloc/erealloc for bundled PQescapeBytea(php_pgsql_escape_bytea) | ||||
* | Fix compile warning. | Ilia Alshanetsky | 2002-11-05 | 1 | -1/+3 |
| | |||||
* | fix compiler warning | Marcus Boerger | 2002-10-24 | 1 | -1/+1 |
| | |||||
* | - Style polizei =) | Derick Rethans | 2002-10-19 | 1 | -109/+109 |
| | |||||
* | Revert invalid patch. It seems the real problem is in php error | Yasuo Ohgaki | 2002-10-19 | 1 | -5/+3 |
| | | | | | | | | | function(s). It exits with return code -1 when php_error_docref() is called. There is custom error handler and without custom error handler, it is working. | ||||
* | Skip field when there is obvious error. | Yasuo Ohgaki | 2002-10-19 | 1 | -1/+3 |
| | | | | | Fixed freeing of wrong zval. | ||||
* | Fixed typo. | Yasuo Ohgaki | 2002-10-19 | 1 | -5/+5 |
| | |||||
* | Added tests for new functions | Yasuo Ohgaki | 2002-10-18 | 13 | -1/+149 |
| | |||||
* | Added pg_get_pid() | Yasuo Ohgaki | 2002-10-17 | 3 | -4/+34 |
| | |||||
* | Added async message function - pg_get_notify() | Yasuo Ohgaki | 2002-10-17 | 2 | -0/+42 |
| | |||||
* | Fixed proto. Clean up. | Yasuo Ohgaki | 2002-10-13 | 1 | -2/+2 |
| | |||||
* | Need to init connstring when there are 2 args. | Yasuo Ohgaki | 2002-10-13 | 1 | -0/+1 |
| | |||||
* | Introduce connect_type option to pg_connect(). | Yasuo Ohgaki | 2002-10-13 | 2 | -6/+14 |
| | | | | | | | pg_connect(conn_str, conn_type) is allowed. @Added PGSQL_CONNECT_FORCE_NEW option to pg_connect() (Yasuo) # If you have better idea about constant name(s), let me know. | ||||
* | Enable pg_escape_bytea(). | Yasuo Ohgaki | 2002-10-13 | 2 | -0/+2 |
| | |||||
* | Rename pg_data_seek() to pg_result_seek(). | Yasuo Ohgaki | 2002-10-03 | 2 | -4/+4 |
| | | | | | Added mysql_result_seek() which is alias of mysql_data_seek(). | ||||
* | Fixed pg_escape_typea() | Yasuo Ohgaki | 2002-10-02 | 1 | -2/+2 |
| | |||||
* | Clean up a little. | Yasuo Ohgaki | 2002-10-02 | 1 | -4/+2 |
| | |||||
* | Added pg_unescape_bytea(). Fixed pg_data_seek(). | Yasuo Ohgaki | 2002-10-02 | 1 | -2/+128 |
| | | | | | php_pgsql_unescape_bytea(PQunescapeBytea) is shamelessly stolen from PostgreSQL 7.3 :) | ||||
* | Add some example functions for mysql users. | Yasuo Ohgaki | 2002-10-02 | 1 | -0/+82 |
| | |||||
* | Added pg_data_seek(). | Yasuo Ohgaki | 2002-10-02 | 2 | -0/+33 |
| | | | | | pg_result_seek() woudl be better name, but there is mysql_data_seek()... | ||||
* | Added pg_ping() | Yasuo Ohgaki | 2002-10-02 | 2 | -1/+34 |
| | |||||
* | Rename pg_metadata() to pg_meta_data() to confirm naming standard | Yasuo Ohgaki | 2002-10-02 | 4 | -14/+14 |
| | |||||
* | Added pg_fetch_assoc(). Fixed proto. Added/fixed comments. | Yasuo Ohgaki | 2002-09-30 | 2 | -6/+22 |
| | | | | | # It seems last attempt was failed. Try committing again. | ||||
* | Use PGSQL_CONV_FORCE_NULL as it is supposed. | Yasuo Ohgaki | 2002-09-30 | 1 | -1/+6 |
| | | | | | | PGSQL_CONV_FORCE_NULL inserts NULL to field instead of NULL string for string type tuples. | ||||
* | Use of PGSQL_CONV_INGORE_NOT_NULL as it is supposed. Change comment a little. | Yasuo Ohgaki | 2002-09-30 | 1 | -3/+3 |
| | |||||
* | Fix TODO desc | Yasuo Ohgaki | 2002-09-30 | 1 | -1/+1 |
| | |||||
* | Remove unused def. Add TODO. | Yasuo Ohgaki | 2002-09-30 | 1 | -4/+1 |
| |