Re: [PHP-DEV] php_odbc.c code question

2001-04-02 Thread Adam Trachtenberg
On Mon, 2 Apr 2001, Dan Kalowsky wrote: > In the current php_odbc.c file the following lines exist: > > #ifndef HAVE_DBMAKER > if ((*pv_onoff)) { > #else > if (pv_onoff && (*pv_onoff)) { > #endif > > these can be found in the odbc_autocommit function does anyone know > why this

[PHP-DEV] php_odbc.c code question

2001-04-02 Thread Dan Kalowsky
In the current php_odbc.c file the following lines exist: #ifndef HAVE_DBMAKER if ((*pv_onoff)) { #else if (pv_onoff && (*pv_onoff)) { #endif these can be found in the odbc_autocommit function does anyone know why this has been #ifdef'ed around? >-