summaryrefslogtreecommitdiff
path: root/ext/mysqli/php_mysqli.h
diff options
context:
space:
mode:
authorGeorg Richter <georg@php.net>2003-06-21 13:35:26 +0000
committerGeorg Richter <georg@php.net>2003-06-21 13:35:26 +0000
commit4554dc4a3706aa7d54537d815a9bdac61d70fed5 (patch)
tree590f4b8dab689ded8349fb5581d8e41918a0e913 /ext/mysqli/php_mysqli.h
parent3a550b3c8c4561caddae96d559803f091330ccaf (diff)
downloadphp-git-4554dc4a3706aa7d54537d815a9bdac61d70fed5.tar.gz
new functions (4.1.1): mysql_sqlstate, mysql_stmt_sqlstate
Diffstat (limited to 'ext/mysqli/php_mysqli.h')
-rw-r--r--ext/mysqli/php_mysqli.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/mysqli/php_mysqli.h b/ext/mysqli/php_mysqli.h
index 06d17487de..b43d2d3a0a 100644
--- a/ext/mysqli/php_mysqli.h
+++ b/ext/mysqli/php_mysqli.h
@@ -254,12 +254,18 @@ PHP_FUNCTION(mysqli_select_db);
PHP_FUNCTION(mysqli_send_long_data);
PHP_FUNCTION(mysqli_send_query);
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);
PHP_FUNCTION(mysqli_stmt_close);
PHP_FUNCTION(mysqli_stmt_errno);
PHP_FUNCTION(mysqli_stmt_error);
+#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);