mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Adding in test ability for WIndows to fetch_objects
This commit is contained in:
parent
d4e143b8be
commit
ae8f64e325
2 changed files with 3 additions and 3 deletions
|
@ -84,7 +84,7 @@ function_entry odbc_functions[] = {
|
|||
PHP_FE(odbc_error, NULL)
|
||||
PHP_FE(odbc_errormsg, NULL)
|
||||
PHP_FE(odbc_exec, NULL)
|
||||
#ifdef HAVE_DBMAKER
|
||||
#if defined(HAVE_DBMAKER) || defined(PHP_WIN32)
|
||||
PHP_FE(odbc_fetch_array, NULL)
|
||||
PHP_FE(odbc_fetch_object, NULL)
|
||||
#endif
|
||||
|
@ -1346,7 +1346,7 @@ PHP_FUNCTION(odbc_exec)
|
|||
}
|
||||
/* }}} */
|
||||
|
||||
#ifdef HAVE_DBMAKER
|
||||
#if defined(HAVE_DBMAKER) || defined(PHP_WIN32)
|
||||
#define ODBC_NUM 1
|
||||
#define ODBC_OBJECT 2
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ PHP_FUNCTION(odbc_data_source);
|
|||
PHP_FUNCTION(odbc_do);
|
||||
PHP_FUNCTION(odbc_exec);
|
||||
PHP_FUNCTION(odbc_execute);
|
||||
#ifdef HAVE_DBMAKER
|
||||
#if defined(HAVE_DBMAKER) || deifned(PHP_WIN32)
|
||||
PHP_FUNCTION(odbc_fetch_array);
|
||||
PHP_FUNCTION(odbc_fetch_object);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue