summaryrefslogtreecommitdiff
path: root/ext/dbx/php_dbx.h
diff options
context:
space:
mode:
authorMarc Boeren <mboeren@php.net>2001-06-05 13:39:09 +0000
committerMarc Boeren <mboeren@php.net>2001-06-05 13:39:09 +0000
commit98eed02fd7fb4495c1df97efe510684a1be66cd8 (patch)
tree786668e756cf2060b959389b27910d9b84bb3ebf /ext/dbx/php_dbx.h
parent25c3a3a39d7aebdce95825e6af2ad8c62905b7cc (diff)
downloadphp-git-98eed02fd7fb4495c1df97efe510684a1be66cd8.tar.gz
Replaced dbx_cmp_asc and dbx_cmp_desc with dbx_compare function and
DBX_CMP_ASC, DBX_CMP_DESC flags. Default comparison changed from DBX_CMP_TEXT to new DBX_CMP_NATIVE. Solved bug in associative fields when using mssql Cleaned up comments (/*/ ... /*/ to /* ... */) dbx_connect now always return false if the database is not found. Optimized dbx_query field-info retrieval loop
Diffstat (limited to 'ext/dbx/php_dbx.h')
-rw-r--r--ext/dbx/php_dbx.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/dbx/php_dbx.h b/ext/dbx/php_dbx.h
index 80300e7402..08d753d648 100644
--- a/ext/dbx/php_dbx.h
+++ b/ext/dbx/php_dbx.h
@@ -38,8 +38,8 @@ extern zend_module_entry dbx_module_entry;
ZEND_MINIT_FUNCTION(dbx);
ZEND_MSHUTDOWN_FUNCTION(dbx);
-/*/ ZEND_RINIT_FUNCTION(dbx); /*/
-/*/ ZEND_RSHUTDOWN_FUNCTION(dbx); /*/
+/* ZEND_RINIT_FUNCTION(dbx); */
+/* ZEND_RSHUTDOWN_FUNCTION(dbx); */
ZEND_MINFO_FUNCTION(dbx);
@@ -49,8 +49,7 @@ ZEND_FUNCTION(dbx_query);
ZEND_FUNCTION(dbx_error);
ZEND_FUNCTION(dbx_sort);
-ZEND_FUNCTION(dbx_cmp_asc);
-ZEND_FUNCTION(dbx_cmp_desc);
+ZEND_FUNCTION(dbx_compare);
/*
Declare any global variables you may need between the BEGIN