summaryrefslogtreecommitdiff
path: root/ext/pgsql
Commit message (Collapse)AuthorAgeFilesLines
* MFH.Yasuo Ohgaki2002-04-051-1/+1
| | | | | Fixed pg_last_notice() double free.
* MFHYasuo Ohgaki2002-04-041-14/+10
| | | | | | # Fixed crash with pg_escape_*() # Added test for pg_escape_*()
* This commit was manufactured by cvs2svn to create branch 'PHP_4_2_0'.SVN Migration2002-04-042-0/+39
|
* MFH.Yasuo Ohgaki2002-04-011-0/+1
| | | | | Forgot to commit this when I commit fix build with PostgreSQL 6.5.x
* MFH. 6.5.3 libpq build fix.Yasuo Ohgaki2002-03-301-16/+29
|
* MFH error message consistency changesYasuo Ohgaki2002-03-271-33/+54
|
* - Fix PGSql CompileDerick Rethans2002-03-211-1/+1
|
* - 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)
* Update docYasuo Ohgaki2002-03-011-4/+15
|
* Fix problem with sesssion_pgsql moduleYasuo Ohgaki2002-02-151-2/+1
|
* Initialize automatic persistent connection reset flagYasuo Ohgaki2002-02-121-0/+1
|
* Clean up code.Yasuo Ohgaki2002-02-062-10/+5
| | | | | | | Removed PHP_PGSQL_API macro. Define pgsql_globals_id # Need a little more clean up
* Make module specified functions to static.Yasuo Ohgaki2002-02-062-23/+22
| | | | | Added TSRMLS_D/C, get rid of one TSRMLS_FETCH.
* Added "auto_reset_presistent" ini entry.Yasuo Ohgaki2002-01-252-4/+4
|
* 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
|
* Fix bug in test scriptYasuo Ohgaki2002-01-101-1/+1
|
* - fixed typo in deprecated functionnameUwe Steinmann2002-01-091-1/+1
|
* Added when experimental functions are added.Yasuo Ohgaki2001-12-201-0/+5
|
* Updated README. Module will not cancel queued query sent.Yasuo Ohgaki2001-12-191-1/+5
|
* 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.
* Get rid of useless path from seach pathYasuo Ohgaki2001-12-181-2/+2
|
* yet another proto fixHartmut Holzgraefe2001-12-171-1/+1
|
* proto fixesHartmut Holzgraefe2001-12-171-5/+5
|
* proto fixHartmut Holzgraefe2001-12-171-1/+1
|
* Actually drop test table.Yasuo Ohgaki2001-12-171-6/+2
| | | | | # name is dropdb since it may be changed to actually destory test db
* Use database named test for testingYasuo Ohgaki2001-12-172-2/+5
|
* Funtion rename:Yasuo Ohgaki2001-12-172-338/+726
| | | | | | | | | | | | | | | | 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.
* Added test filesYasuo Ohgaki2001-12-1720-0/+392
|
* README updateYasuo Ohgaki2001-12-162-29/+126
| | | | | | Raise error for bogus installation path for --with-pgsql Added check for pg_escape_*
* proto fixesHartmut Holzgraefe2001-12-161-4/+4
|
* Update headers.Sebastian Bergmann2001-12-112-4/+4
|
* More README update.Yasuo Ohgaki2001-12-111-34/+44
|
* README updateYasuo Ohgaki2001-12-111-0/+3
|
* Added README file for pgsql moduleYasuo Ohgaki2001-12-112-1/+86
| | | | | Added my self to CREDIT
* Fix protoYasuo Ohgaki2001-12-101-40/+40
|
* Added async query functionsYasuo Ohgaki2001-12-102-3/+294
|
* Unified the configure messages.foobar2001-11-301-5/+5
|
* * 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-262-11/+12
|
* 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
|
* If the header file is not found, bail out.foobar2001-08-141-1/+1
|
* - 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
|