summaryrefslogtreecommitdiff
path: root/ext/pgsql/pgsql.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Make pg_last_notice() work as it is designed. It returns last notice message ↵Yasuo Ohgaki2002-04-061-23/+50
| | | | | | | | | | | for connection resource specified. Added "pgsql.ignore_notice" ini entry. Added "pgsql.log_notice" ini entry. @ Make pg_last_notice() work as it is designed. It returns notice message PostgreSQL connection resource specified. @ Added "pgsql.ignore_notice" ini entry. @ Added "pgsql.log_notice" ini entry.
* Fix pg_last_notice() double free.Yasuo Ohgaki2002-04-051-1/+1
| | | | | # This should be merged
* Clean up pg_escape_*()Yasuo Ohgaki2002-04-041-17/+9
|
* Fixed crash with pg_escape_*()Yasuo Ohgaki2002-04-041-1/+5
| | | | | # I'll MFH later.
* Print multibyte and SSL support is compiled in libpq or not.Yasuo Ohgaki2002-03-311-2/+12
|
* Print PostgreSQL version number in phpinfo()Yasuo Ohgaki2002-03-311-0/+3
|
* Fix build failure with PostgreSQL 6.5.xYasuo Ohgaki2002-03-291-11/+28
| | | | | # I'll merge this to 4.2.0 branch later
* Remove warningsYasuo Ohgaki2002-03-261-2/+0
|
* Changed error messages to be consistent with other error messagesYasuo Ohgaki2002-03-261-22/+40
|
* *** empty log message ***Markus Fischer2002-03-211-1/+1
|
* Show function name in error message.Yasuo Ohgaki2002-03-211-5/+9
|
* Streams are all tracked as resources now.Wez Furlong2002-03-201-1/+1
| | | | | | Add some logic that will help track down leaks when debug is enabled.
* Streams now make more use of the memory manager, so tracking downWez Furlong2002-03-171-1/+1
| | | | | | leaking streams should be easier. # I hate these big commits
* change * formattingWez Furlong2002-03-161-1/+1
|
* New PHP streams...Wez Furlong2002-03-151-7/+9
|
* - Allow duality between Engine 1 & 2 using ZEND_STANDARD_CLASS_DEF_PTRAndi Gutmans2002-03-121-1/+1
|
* Print function names in error messagesYasuo Ohgaki2002-03-111-1/+2
|
* WS and indentYasuo Ohgaki2002-03-111-75/+75
|
* Add comments for constants. Remove unneeded constants included by mistake.Yasuo Ohgaki2002-03-111-8/+4
|
* Fix possible build error under Windows.Yasuo Ohgaki2002-03-111-1/+1
| | | | | # Recent libpq under windows supports PQcmdTuples, right?
* - Make the 2nd parameter to pgsql_fetch_* support NULL in case 3 parametersDerick Rethans2002-03-021-16/+23
| | | | | | | | are supplied, but you do not want to provide a row number yourself. @- Make the 2nd parameter to pgsql_fetch_* support NULL in case 3 @ parameters are supplied, but you do not want to provide a row number @ yourself. (Derick)
* Initialize automatic persistent connection reset flagYasuo Ohgaki2002-02-121-0/+1
|
* Clean up code.Yasuo Ohgaki2002-02-061-3/+3
| | | | | | | Removed PHP_PGSQL_API macro. Define pgsql_globals_id # Need a little more clean up
* Make module specified functions to static.Yasuo Ohgaki2002-02-061-15/+14
| | | | | Added TSRMLS_D/C, get rid of one TSRMLS_FETCH.
* Added "auto_reset_presistent" ini entry.Yasuo Ohgaki2002-01-251-4/+3
|
* Revert last 2 commit. Instead, make php_pgsql_do_connect() to catchYasuo Ohgaki2002-01-241-13/+18
| | | | | | | broken connection always. # I think this is better than check&reset connection when query # functions are called.
* Add a little more fault tolerance for pg_host, pg_tty and more.Yasuo Ohgaki2002-01-241-0/+3
|
* No more httpd restart is required when PostgreSQL is rebooted.Yasuo Ohgaki2002-01-241-0/+6
| | | | | # Works for pg_query()/pg_send_query()
* Fixed typo and protoYasuo Ohgaki2002-01-211-5/+5
|
* - fixed typo in deprecated functionnameUwe Steinmann2002-01-091-1/+1
|
* Do not cancel queued query automatically.Yasuo Ohgaki2001-12-191-37/+13
|
* More proper error message.Yasuo Ohgaki2001-12-181-5/+2
| | | | | Remove old lines that aren't needed.
* yet another proto fixHartmut Holzgraefe2001-12-171-1/+1
|
* proto fixesHartmut Holzgraefe2001-12-171-5/+5
|
* proto fixHartmut Holzgraefe2001-12-171-1/+1
|
* Funtion rename:Yasuo Ohgaki2001-12-171-301/+667
| | | | | | | | | | | | | | | | Functions are renamed accoding to coding stanard. Some functions has completely different name now. New functions: pg_copy_to()/pg_copy_from() - by Youichi Iwakiri <yiwakiri@st.rim.or.jp> pg_lo_tell()/pg_lo_seek()/pg_result_error()/pg_result_status() pg_escape_string()/pg_escape_bytea() - Only pgsql 7.2 or later. Fixed: Wrong mode when clean up connection resource. Compiler warning for pg_encoding_to_char(). # Please do not document new functions, yet. # For new functions and other info, please read README # in module dir.
* proto fixesHartmut Holzgraefe2001-12-161-4/+4
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Fix protoYasuo Ohgaki2001-12-101-40/+40
|
* Added async query functionsYasuo Ohgaki2001-12-101-2/+287
|
* * zend_module_entry change: apino, debug and zts are moved first,Stig Bakken2001-10-111-0/+2
| | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
* Fix pg_last_notice()Zeev Suraski2001-09-261-11/+11
|
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-70/+70
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* - More ZE2 fixesAndi Gutmans2001-08-131-3/+1
|
* more tsrm cleanupSascha Schumann2001-08-061-1/+1
|
* some more eliminate-fetches-or-escalate-them-at-leastSascha Schumann2001-08-051-1/+1
|
* more ZTS fixes.foobar2001-07-311-2/+0
|
* More TSRMLS_FETCH annihilation. Enough for today...Zeev Suraski2001-07-311-1/+1
|
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-311-6/+5
|