summaryrefslogtreecommitdiff
path: root/ext/dbx/php_dbx.h
Commit message (Collapse)AuthorAgeFilesLines
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* whitespace, braces, coding style (Mc)Marc Boeren2001-08-171-3/+3
|
* Adding cvs ID to source filesFrank M. Kromann2001-08-071-0/+2
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-11/+1
|
* Replaced dbx_cmp_asc and dbx_cmp_desc with dbx_compare function andMarc Boeren2001-06-051-4/+3
| | | | | | | | | | 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
* Added a database member to the dbx_link object. Since e.g. mysql reusesMarc Boeren2001-04-111-4/+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!
* Fixed compile errors for PostgreSQL support (Mc)Marc Boeren2001-03-231-1/+2
| | | | | | | | | 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!
* added initial support for PostgreSQL to ext/dbx.Rui Hirokawa2001-03-231-4/+12
|
* Changed header for source files, now point to PHP license (Mc)Marc Boeren2001-03-231-8/+12
| | | | | | | Found another // comment and replaced with /**/ (Mc) Removed proprietary license (in favor of php license) (Mc) Added .cvsignore file, I hope it works correctly (Mc)
* Changed C++ style comments to C-style comments (Marc)Marc Boeren2001-03-221-6/+7
| | | | | | #I hope I got 'em all @Changed C++ style comments to C-style comments (Marc)
* Added dbx module (database abstraction) to the repositorty (/ext/dbx).Marc Boeren2001-03-221-0/+84
Compiles under Linux (--enable-dbx) and Windows. Supports MySQL and ODBC modules (more to be added later). @ Added dbx module (database abstraction) to the repository. (Marc)