diff options
author | Georg Richter <georg@php.net> | 2004-07-07 08:02:27 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2004-07-07 08:02:27 +0000 |
commit | 9db1075c0ebf35fa16a0747e7f06b00bf094e6a5 (patch) | |
tree | 9048c3d4969c27ba58a70e0d14c441f63690413d /ext/mysqli/php_mysqli.h | |
parent | 1d89ed6ee3f1bb1be409407986e59090604959bf (diff) | |
download | php-git-9db1075c0ebf35fa16a0747e7f06b00bf094e6a5.tar.gz |
added check in config.m4 for deprecated library
added support for new 4.1.3-beta functions
mysqli_stmt_field_count
mysqli_stmt_attr_set
mysqli_stmt_attr_get
removed support for deprecated/old api functions
fixed bug in constructor_get
Diffstat (limited to 'ext/mysqli/php_mysqli.h')
-rw-r--r-- | ext/mysqli/php_mysqli.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/ext/mysqli/php_mysqli.h b/ext/mysqli/php_mysqli.h index 5d19b0e744..c5a090fa2e 100644 --- a/ext/mysqli/php_mysqli.h +++ b/ext/mysqli/php_mysqli.h @@ -334,13 +334,14 @@ PHP_FUNCTION(mysqli_rpl_parse_enabled); PHP_FUNCTION(mysqli_rpl_probe); PHP_FUNCTION(mysqli_rpl_query_type); PHP_FUNCTION(mysqli_select_db); +PHP_FUNCTION(mysqli_stmt_attr_get); +PHP_FUNCTION(mysqli_stmt_attr_set); PHP_FUNCTION(mysqli_stmt_bind_param); PHP_FUNCTION(mysqli_stmt_bind_result); PHP_FUNCTION(mysqli_stmt_execute); -#ifndef MYSQLI_HAVE_OLDAPI +PHP_FUNCTION(mysqli_stmt_field_count); PHP_FUNCTION(mysqli_stmt_init); PHP_FUNCTION(mysqli_stmt_prepare); -#endif PHP_FUNCTION(mysqli_stmt_fetch); PHP_FUNCTION(mysqli_stmt_param_count); PHP_FUNCTION(mysqli_stmt_send_long_data); @@ -350,9 +351,7 @@ PHP_FUNCTION(mysqli_server_init); PHP_FUNCTION(mysqli_server_end); #endif PHP_FUNCTION(mysqli_slave_query); -#if MYSQL_VERSION_ID >= 40101 PHP_FUNCTION(mysqli_sqlstate); -#endif PHP_FUNCTION(mysqli_ssl_set); PHP_FUNCTION(mysqli_stat); PHP_FUNCTION(mysqli_stmt_affected_rows); @@ -360,15 +359,11 @@ PHP_FUNCTION(mysqli_stmt_close); PHP_FUNCTION(mysqli_stmt_data_seek); PHP_FUNCTION(mysqli_stmt_errno); PHP_FUNCTION(mysqli_stmt_error); -#ifndef HAVE_MYSQLI_OLDAPI PHP_FUNCTION(mysqli_stmt_free_result); PHP_FUNCTION(mysqli_stmt_reset); -#endif PHP_FUNCTION(mysqli_stmt_insert_id); PHP_FUNCTION(mysqli_stmt_num_rows); -#if MYSQL_VERSION_ID >= 40101 PHP_FUNCTION(mysqli_stmt_sqlstate); -#endif PHP_FUNCTION(mysqli_stmt_store_result); PHP_FUNCTION(mysqli_store_result); PHP_FUNCTION(mysqli_thread_id); |