summaryrefslogtreecommitdiff
path: root/ext/dbx/dbx_pgsql.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix memory leaks.Yasuo Ohgaki2002-02-131-2/+6
|
* Fixed bug where users with empty passwords could not connect. (Mc)Marc Boeren2002-02-131-7/+7
| | | | | # thanks for testing, Yasuo. Could you commit the mem-leak patch now?
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-9/+9
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* whitespace, braces, coding style (Mc)Marc Boeren2001-08-171-142/+148
|
* - Use the same coding standards for pointers as the rest of PHP.Andi Gutmans2001-08-171-15/+15
| | | | | - For example, char ** foo should be char **foo
* WhitespaceZeev Suraski2001-08-111-2/+2
|
* Adding cvs ID to source filesFrank M. Kromann2001-08-071-0/+2
|
* Replaced dbx_cmp_asc and dbx_cmp_desc with dbx_compare function andMarc Boeren2001-06-051-9/+7
| | | | | | | | | | DBX_CMP_ASC, DBX_CMP_DESC flags. Default comparison changed from DBX_CMP_TEXT to new DBX_CMP_NATIVE. Solved bug in associative fields when using mssql Cleaned up comments (/*/ ... /*/ to /* ... */) dbx_connect now always return false if the database is not found. Optimized dbx_query field-info retrieval loop
* Removed some old commented code (Mc)Marc Boeren2001-04-181-24/+3
|
* deleted warning output in dbx/pgsql.Rui Hirokawa2001-04-141-0/+8
|
* Added a database member to the dbx_link object. Since e.g. mysql reusesMarc Boeren2001-04-111-1/+2
| | | | | | | | | | connections, two or more dbx_link objects may share the connection identifier. The database name is used in the dbx_query, where it calls mysql_db_query instead of mysql_query. This means the database name has to be passed around to all dbx_xxx_query functions, hence the update on all the files. (Mc) # Thanks to Christian Rabe for all the input on this issue!
* Inserted a few extra initialisations, just in case. Had some problems in aMarc Boeren2001-04-021-0/+2
| | | | | different module, this solved it there, hance the added insurance. (Mc)
* Fixed compile errors for PostgreSQL support (Mc)Marc Boeren2001-03-231-6/+8
| | | | | | | | | Removed globals that Rui put in, and changed the dbx_get_row to include a row_number (which PostgreSQL expects) (Mc) Added source files to Makefile.in and dbx.dsp (Mc) #Could someone please check if the PostgreSQL support works? #And please, check your work _before_ you commit anything!
* changed license of PostgreSQL module in ext/dbx.Rui Hirokawa2001-03-231-8/+8
|
* added initial support for PostgreSQL to ext/dbx.Rui Hirokawa2001-03-231-0/+281