diff options
author | Sascha Schumann <sas@php.net> | 2000-02-23 19:16:34 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-02-23 19:16:34 +0000 |
commit | 1e1e162e316e44e59a80637a08dc7bf584f6d74c (patch) | |
tree | 87861164b138230ec435bacaa555ebd920b11f6e /ext/odbc/php_odbc.h | |
parent | a8c7a9deb87f550a7061fa00ebf0a502ffcbd83b (diff) | |
download | php-git-1e1e162e316e44e59a80637a08dc7bf584f6d74c.tar.gz |
Define SQL_SUCCEEDED for Solid.
PR: #3383
Diffstat (limited to 'ext/odbc/php_odbc.h')
-rw-r--r-- | ext/odbc/php_odbc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/odbc/php_odbc.h b/ext/odbc/php_odbc.h index 57e37ba594..658cac6976 100644 --- a/ext/odbc/php_odbc.h +++ b/ext/odbc/php_odbc.h @@ -54,6 +54,7 @@ PHP_FUNCTION(solid_fetch_prev); #define SQLSMALLINT SWORD #define SQLUSMALLINT UWORD +#define SQL_SUCCEEDED(rc) (((rc)&(~1))==0) #elif defined(HAVE_EMPRESS) /* Empress */ |