summaryrefslogtreecommitdiff
path: root/ext/pgsql/pgsql.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Added new function pg_parameter_status()Marcus Boerger2003-07-271-0/+38
|
* New smart connect/shutdown for persistent connections.Marcus Boerger2003-07-271-15/+33
| | | | | | | Behavior for old libs/servers is "BEGIN;ROLLBACK;" in request shutdown. For new libs a "RESET ALL;" is done in connect and "ROLLBACK;" is only done where appropriate.
* Added pg_version() which returns an associative array of client/protocol/serverMarcus Boerger2003-07-221-0/+22
| | | | | | version. @Added pg_version() function. (Marcus)
* The value might be a null pointerMarcus Boerger2003-07-221-2/+7
|
* Postgres decision on thisMarcus Boerger2003-07-221-1/+1
|
* Reset vars when reusing a persistent connection as requested from postgres ↵Marcus Boerger2003-07-211-0/+5
| | | | developers
* Go without #24499 hint sneaked in by accidentMarcus Boerger2003-07-211-4/+1
|
* Use only one line per error message and don't terminate with a dot as ↵Marcus Boerger2003-07-201-121/+167
| | | | everywhere else.
* proto fixesAndrey Hristov2003-07-191-4/+4
|
* Fixed bug #24284 (Fixed memory leak inside pg_ping())Ilia Alshanetsky2003-06-221-1/+3
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Better fix for default connection handling.Marcus Boerger2003-05-301-9/+53
| | | | | # Problems noticed by Jay with the help of Sascha's nice little script.
* Fix handling of default linksMarcus Boerger2003-05-301-16/+0
|
* Fix notice handlingMarcus Boerger2003-05-301-4/+10
|
* - Fix ini handling in ZTS modeMarcus Boerger2003-05-301-19/+11
|
* emalloc -> safe_emallocIlia Alshanetsky2003-04-251-3/+3
| | | | | Fixed possible buffer overflow in pg_lo_read()
* Fix some segfaults in some of the pg_lo_* functions.Jay Smith2003-04-171-2/+18
|
* Fix 'timestamp without timezone', too.Jay Smith2003-04-011-0/+3
|
* Fix 'time with timezone', tooMarcus Boerger2003-04-011-1/+1
|
* Fixed bug #23009 (pg_select with timestamp)Jay Smith2003-04-011-2/+2
|
* Correcting int/long mismatched - 64bit issues.David Hill2003-03-101-10/+11
|
* Renamed OnUpdateInt -> OnUpdateLong to prevent further misunderstandings.foobar2003-03-071-2/+2
| | | | | | # Intentionally left out any 'alias' for it, this way 3rd party extension # maintainers will really NOTICE the change.
* 64-bit correction to variables passed to zend_parse_parametersDavid Hill2003-03-061-10/+15
| | | | | @64-bit correction to variables passed to zend_parse_parameters (Dave)
* Remove C++-style comment. (Breaks Sun Forte compiler.)Justin Erenkrantz2003-02-201-1/+1
|
* Fixed bug: #22306 (pg_lo_seek($h, 0, PGSQL_SEEK_SET) succeeds but returns false)foobar2003-02-201-1/+1
|
* Correct the spelling of 'supported'.Jon Parise2003-02-101-1/+1
|
* Fixed one more improper row offset handling.Yasuo Ohgaki2003-02-091-1/+1
|
* Fixed improper result offset handling.Yasuo Ohgaki2003-02-091-7/+17
| | | | | Prevent error when connection is broken. (optional)
* Made the row parameter in pg_result_seek() non-optional, the currentIlia Alshanetsky2003-02-041-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 Alshanetsky2003-01-181-13/+3
|
* Fixed protoYasuo Ohgaki2003-01-151-1/+1
|
* - Fixed bug #21232 (Unresolved references to PQsetnonblocking). (Patch byDerick Rethans2003-01-041-2/+2
| | | | | Floyd <floyd@studiodust.com>)
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* MFB: Fix typoDerick Rethans2002-12-211-2/+2
|
* A better memory leak patch.Ilia Alshanetsky2002-12-161-2/+3
|
* Fixed a memory leak.Ilia Alshanetsky2002-12-151-1/+1
|
* Fixed problem with PostgreSQL 7.3Yasuo Ohgaki2002-11-291-1/+1
|
* Remove a warningYasuo Ohgaki2002-11-261-1/+1
|
* Cleanup state=4 and avoid using sscanf()Yasuo Ohgaki2002-11-251-8/+6
|
* Use proper form of NULSascha Schumann2002-11-241-5/+1
| | | | | Drop superfluous checks for NULL results
* null after the erealloc()Sterling Hughes2002-11-241-1/+1
|
* Added missing '\0'Yasuo Ohgaki2002-11-241-1/+2
|
* Speed up pg_escape_bytea, from O(n^2) => O(n). My test script speed upYasuo Ohgaki2002-11-121-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 Alshanetsky2002-11-051-1/+3
|
* fix compiler warningMarcus Boerger2002-10-241-1/+1
|
* - Style polizei =)Derick Rethans2002-10-191-109/+109
|
* Revert invalid patch. It seems the real problem is in php errorYasuo Ohgaki2002-10-191-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 Ohgaki2002-10-191-1/+3
| | | | | Fixed freeing of wrong zval.
* Fixed typo.Yasuo Ohgaki2002-10-191-5/+5
|
* Added pg_get_pid()Yasuo Ohgaki2002-10-171-2/+19
|