RE: Re[3]: [PHP-CVS] cvs: php4 /main config.w32.h php_ini.c

2001-04-24 Thread Marc Boeren
If there are we are better off finding them and fixing them instead of defaulting to c:\php4. I think we should follow the Windows standard on Windows. I know that I hate when programs want to install themselves in c:\ on Windows. Just stating the obvious here, but c:\program files is a

RE: Re[3]: [PHP-CVS] cvs: php4 /main config.w32.h php_ini.c

2001-04-24 Thread Marc Boeren
What is the software default path registry key??? I found it once before, when I wasn't looking. Now I'm looking I can't find it. Do a search for programfilesdir or programfilespath in regedit (you'll probably end up in HKEY_LOCAL_MACHINE/software/microsoft/windows/currentversion...) I think

[PHP-CVS] cvs: php4 /ext/dbx dbx.c dbx.h

2001-04-18 Thread Marc Boeren
mboeren Wed Apr 18 05:31:08 2001 EDT Modified files: /php4/ext/dbx dbx.c dbx.h Log: Added DBX_CMP_TEXT and DBX_CMP_NUMBER constants and support for them in the dbx_cmp_desc and dbx_cmp_asc functions. The old method of passing a string "number" is now no

[PHP-CVS] cvs: php4 /ext/dbx dbx_pgsql.c

2001-04-18 Thread Marc Boeren
mboeren Wed Apr 18 05:34:53 2001 EDT Modified files: /php4/ext/dbx dbx_pgsql.c Log: Removed some old commented code (Mc) Index: php4/ext/dbx/dbx_pgsql.c diff -u php4/ext/dbx/dbx_pgsql.c:1.6 php4/ext/dbx/dbx_pgsql.c:1.7 --- php4/ext/dbx/dbx_pgsql.c:1.6

[PHP-CVS] cvs: php4 /ext/dbx dbx.c dbx_mysql.c dbx_mysql.h dbx_odbc.c dbx_odbc.h dbx_pgsql.c dbx_pgsql.h php_dbx.h

2001-04-11 Thread Marc Boeren
mboeren Wed Apr 11 01:14:57 2001 EDT Modified files: /php4/ext/dbx dbx.c dbx_mysql.c dbx_mysql.h dbx_odbc.c dbx_odbc.h dbx_pgsql.c dbx_pgsql.h php_dbx.h Log: Added a database member to the dbx_link object. Since e.g. mysql reuses

[PHP-CVS] cvs: php4 /ext/dbx dbx.c

2001-04-09 Thread Marc Boeren
mboeren Mon Apr 9 04:53:39 2001 EDT Modified files: /php4/ext/dbx dbx.c Log: Added optional 'comparison_type' parameter to compare functions, to force either text or number comparison. (Mc) Index: php4/ext/dbx/dbx.c diff -u php4/ext/dbx/dbx.c:1.7

[PHP-CVS] cvs: php4 /ext/dbx dbx.c dbx_odbc.c dbx_pgsql.c

2001-04-02 Thread Marc Boeren
mboeren Mon Apr 2 01:51:36 2001 EDT Modified files: /php4/ext/dbx dbx.c dbx_odbc.c dbx_pgsql.c Log: Inserted a few extra initialisations, just in case. Had some problems in a different module, this solved it there, hance the added insurance. (Mc)

[PHP-CVS] cvs: php4 /ext/dbx dbx.c

2001-03-26 Thread Marc Boeren
mboeren Mon Mar 26 00:26:07 2001 EDT Modified files: /php4/ext/dbx dbx.c Log: Removed #include php_config.h, since it was not necessary (Mc) Index: php4/ext/dbx/dbx.c diff -u php4/ext/dbx/dbx.c:1.5 php4/ext/dbx/dbx.c:1.6 --- php4/ext/dbx/dbx.c:1.5

[PHP-CVS] cvs: php4 /ext/dbx .cvsignore LICENSE dbx.c dbx.dsp dbx.h dbx_mysql.c dbx_mysql.h dbx_odbc.c dbx_odbc.h php_dbx.h

2001-03-23 Thread Marc Boeren
and are unable to | + | obtain it through the world-wide-web, please send a note to | + | [EMAIL PROTECTED] so we can mail you a copy immediately. | +--+ | Author : Marc Boeren [EMAIL PROTECTED

[PHP-CVS] cvs: php4 /ext/dbx Makefile.in dbx.c dbx.dsp dbx_mysql.c dbx_mysql.h dbx_odbc.c dbx_odbc.h dbx_pgsql.c dbx_pgsql.h php_dbx.h

2001-03-23 Thread Marc Boeren
mboeren Fri Mar 23 06:50:17 2001 EDT Modified files: /php4/ext/dbx Makefile.in dbx.c dbx.dsp dbx_mysql.c dbx_mysql.h dbx_odbc.c dbx_odbc.h dbx_pgsql.c dbx_pgsql.h php_dbx.h Log: Fixed compile errors for

[PHP-CVS] cvs: php4 /ext/dbx CREDITS INSTALL LICENSE Makefile.in config.m4 dbx.c dbx.dsp dbx.h dbx_mysql.c dbx_mysql.h dbx_odbc.c dbx_odbc.h php_dbx.h

2001-03-22 Thread Marc Boeren
cense and are unable | | to obtain it through the world-wide-web, please send a note to | | [EMAIL PROTECTED] so we can mail you a copy immediately. | +--+ | Author : Marc Boeren

[PHP-CVS] cvs: php4 /ext/dbx EXPERIMENTAL

2001-03-22 Thread Marc Boeren
mboeren Thu Mar 22 04:26:24 2001 EDT Added files: /php4/ext/dbx EXPERIMENTAL Log: no comment :) -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

[PHP-CVS] cvs: php4 /ext/dbx dbx.c dbx_mysql.c dbx_mysql.h dbx_odbc.c dbx_odbc.h php_dbx.h

2001-03-22 Thread Marc Boeren
mboeren Thu Mar 22 07:14:35 2001 EDT Modified files: /php4/ext/dbx dbx.c dbx_mysql.c dbx_odbc.c dbx_mysql.h dbx_odbc.h php_dbx.h Log: Changed C++ style comments to C-style comments (Marc) #I hope I got 'em all @Changed C++ style

[PHP] database abstraction module

2001-03-14 Thread Marc Boeren
Hi! I'ld like to announce the availability of a database abstraction module, called 'dbx'. It gives you the ability to code your database-enabled php-templates once (for a specific database), and port to a different database later by just changing the string "odbc" to "mysql" (e.g.) once. This