diff options
author | Stig Bakken <ssb@php.net> | 1999-11-29 00:45:28 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 1999-11-29 00:45:28 +0000 |
commit | bd8b285a9e3577d9f8a19c9128d049b0b37d0e59 (patch) | |
tree | e929193119bc2a64bc37464ddb55da97666c5e17 /ext/odbc/php_odbc.h | |
parent | d9eb533c801a2b6d9b01ee5a1ac4a1c471cae5c7 (diff) | |
download | php-git-bd8b285a9e3577d9f8a19c9128d049b0b37d0e59.tar.gz |
@Added DBMaker support (patch by Pax Tsai <paxtsai@lion.syscom.com.tw>)
Added DBMaker support (patch by Pax Tsai <paxtsai@lion.syscom.com.tw>)
Diffstat (limited to 'ext/odbc/php_odbc.h')
-rw-r--r-- | ext/odbc/php_odbc.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/odbc/php_odbc.h b/ext/odbc/php_odbc.h index 1e0c36c323..34ff80a0f9 100644 --- a/ext/odbc/php_odbc.h +++ b/ext/odbc/php_odbc.h @@ -116,6 +116,13 @@ PHP_FUNCTION(solid_fetch_prev); #include <sql.h> #include <sqlext.h> +#elif defined(HAVE_DBMAKER) /* DBMaker */ + +#define ODBC_TYPE "DBMaker" +#define HAVE_SQL_EXTENDED_FETCH 1 +#include <odbc.h> + + #elif defined(HAVE_CODBC) /* Custom ODBC */ #define ODBC_TYPE "Custom ODBC" |