2003-02-12 08:45:53 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2003-02-22 15:31:01 +08:00
|
|
|
| PHP Version 5 |
|
2003-02-12 08:45:53 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2003-02-22 15:31:01 +08:00
|
|
|
| Copyright (c) 1997-2003 The PHP Group |
|
2003-02-12 08:45:53 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2003-06-11 04:04:29 +08:00
|
|
|
| This source file is subject to version 3.0 of the PHP license, |
|
2003-02-12 08:45:53 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.php.net/license/3_0.txt. |
|
2003-02-12 08:45:53 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: Georg Richter <georg@php.net> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
2003-02-15 05:27:13 +08:00
|
|
|
/* A little hack to prevent build break, when mysql is used together with
|
|
|
|
* c-client, which also defines LIST.
|
|
|
|
*/
|
|
|
|
#ifdef LIST
|
|
|
|
#undef LIST
|
|
|
|
#endif
|
|
|
|
|
2003-02-12 08:45:53 +08:00
|
|
|
#include <mysql.h>
|
2003-03-11 09:19:21 +08:00
|
|
|
#include "mysqli_profiler.h"
|
2003-02-12 08:45:53 +08:00
|
|
|
|
|
|
|
#ifndef PHP_MYSQLI_H
|
|
|
|
#define PHP_MYSQLI_H
|
|
|
|
|
2003-03-04 06:36:47 +08:00
|
|
|
|
2003-02-12 08:45:53 +08:00
|
|
|
typedef struct {
|
|
|
|
ulong buflen;
|
|
|
|
char *buffer;
|
|
|
|
ulong type;
|
|
|
|
} BIND_BUFFER;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
MYSQL_STMT *stmt;
|
|
|
|
unsigned int var_cnt;
|
|
|
|
zval **vars;
|
|
|
|
BIND_BUFFER *bind;
|
|
|
|
char *is_null;
|
|
|
|
char type;
|
|
|
|
} STMT;
|
|
|
|
|
2003-03-04 06:36:47 +08:00
|
|
|
typedef struct {
|
2003-03-09 07:33:12 +08:00
|
|
|
void *prinfo; /* profiler info */
|
|
|
|
void *ptr; /* resource: (mysql, result, stmt) */
|
|
|
|
} MYSQLI_RESOURCE;
|
|
|
|
|
2003-02-12 08:45:53 +08:00
|
|
|
typedef struct _mysqli_object {
|
|
|
|
zend_object zo;
|
|
|
|
void *ptr;
|
|
|
|
} mysqli_object; /* extends zend_object */
|
|
|
|
|
2003-03-11 09:19:21 +08:00
|
|
|
#define MYSQLI_PR_MAIN 0
|
|
|
|
#define MYSQLI_PR_MYSQL 1
|
|
|
|
#define MYSQLI_PR_QUERY 2
|
|
|
|
#define MYSQLI_PR_QUERY_RESULT 3
|
|
|
|
#define MYSQLI_PR_STMT 4
|
|
|
|
#define MYSQLI_PR_STMT_RESULT 5
|
|
|
|
#define MYSQLI_PR_RESULT 6
|
|
|
|
#define MYSQLI_PR_COMMAND 7
|
2003-03-09 07:33:12 +08:00
|
|
|
|
|
|
|
|
2003-02-12 08:45:53 +08:00
|
|
|
#define phpext_mysqli_ptr &mysqli_module_entry
|
|
|
|
|
|
|
|
#ifdef PHP_WIN32
|
|
|
|
#define PHP_MYSQLI_API __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define PHP_MYSQLI_API
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ZTS
|
|
|
|
#include "TSRM.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define PHP_MYSQLI_EXPORT(__type) PHP_MYSQLI_API __type
|
|
|
|
|
|
|
|
extern zend_module_entry mysqli_module_entry;
|
|
|
|
extern function_entry mysqli_functions[];
|
|
|
|
extern function_entry mysqli_link_methods[];
|
|
|
|
extern function_entry mysqli_stmt_methods[];
|
|
|
|
extern function_entry mysqli_result_methods[];
|
|
|
|
extern void php_mysqli_fetch_into_hash(INTERNAL_FUNCTION_PARAMETERS, int flag);
|
|
|
|
extern void php_clear_stmt_bind(STMT *stmt);
|
2003-03-04 06:36:47 +08:00
|
|
|
|
2003-02-12 08:45:53 +08:00
|
|
|
zend_class_entry *mysqli_link_class_entry;
|
|
|
|
zend_class_entry *mysqli_stmt_class_entry;
|
|
|
|
zend_class_entry *mysqli_result_class_entry;
|
|
|
|
|
|
|
|
zend_class_entry _mysqli_link_class_entry;
|
|
|
|
zend_class_entry _mysqli_stmt_class_entry;
|
|
|
|
zend_class_entry _mysqli_result_class_entry;
|
|
|
|
|
|
|
|
PHP_MYSQLI_EXPORT(zend_object_value) mysqli_objects_new(zend_class_entry * TSRMLS_DC);
|
|
|
|
|
|
|
|
#define REGISTER_MYSQLI_CLASS_ENTRY(name, mysqli_entry, class_functions) { \
|
|
|
|
INIT_CLASS_ENTRY(_##mysqli_entry,name,class_functions); \
|
|
|
|
_##mysqli_entry.create_object = mysqli_objects_new; \
|
|
|
|
mysqli_entry = zend_register_internal_class(&_##mysqli_entry TSRMLS_CC); \
|
|
|
|
} \
|
|
|
|
|
|
|
|
#define MYSQLI_REGISTER_RESOURCE_EX(__ptr, __zval, __ce) \
|
|
|
|
((mysqli_object *) zend_object_store_get_object(__zval TSRMLS_CC))->ptr = __ptr;
|
|
|
|
|
|
|
|
#define MYSQLI_RETURN_RESOURCE(__ptr, __ce) \
|
|
|
|
Z_TYPE_P(return_value) = IS_OBJECT; \
|
|
|
|
(return_value)->value.obj = mysqli_objects_new(__ce TSRMLS_CC); \
|
|
|
|
MYSQLI_REGISTER_RESOURCE_EX(__ptr, return_value, __ce)
|
|
|
|
|
|
|
|
#define MYSQLI_REGISTER_RESOURCE(__ptr, __ce) \
|
|
|
|
{\
|
|
|
|
zval *object = getThis();\
|
|
|
|
if (!object) {\
|
|
|
|
object = return_value;\
|
|
|
|
Z_TYPE_P(object) = IS_OBJECT;\
|
|
|
|
(object)->value.obj = mysqli_objects_new(__ce TSRMLS_CC);\
|
|
|
|
}\
|
|
|
|
MYSQLI_REGISTER_RESOURCE_EX(__ptr, object, __ce)\
|
|
|
|
}
|
|
|
|
|
2003-03-09 07:33:12 +08:00
|
|
|
#define MYSQLI_FETCH_RESOURCE(__ptr, __type, __prptr, __prtype, __id, __name) \
|
2003-02-12 08:45:53 +08:00
|
|
|
{ \
|
2003-03-09 07:33:12 +08:00
|
|
|
MYSQLI_RESOURCE *my_res; \
|
2003-02-12 08:45:53 +08:00
|
|
|
mysqli_object *intern = (mysqli_object *)zend_object_store_get_object(*(__id) TSRMLS_CC);\
|
2003-03-09 07:33:12 +08:00
|
|
|
if (!(my_res = (MYSQLI_RESOURCE *)intern->ptr)) {\
|
2003-02-15 00:49:09 +08:00
|
|
|
php_error(E_WARNING, "Couldn't fetch %s", intern->zo.ce->name);\
|
|
|
|
RETURN_NULL();\
|
|
|
|
}\
|
2003-03-09 07:33:12 +08:00
|
|
|
__ptr = (__type)my_res->ptr; \
|
|
|
|
__prptr = (__prtype)my_res->prinfo; \
|
2003-02-22 15:31:01 +08:00
|
|
|
if (!strcmp((char *)__name, "mysqli_stmt")) {\
|
|
|
|
if (!((STMT *)__ptr)->stmt->mysql) {\
|
|
|
|
php_error(E_WARNING, "Statement isn't valid anymore");\
|
|
|
|
RETURN_NULL();\
|
|
|
|
}\
|
|
|
|
}\
|
|
|
|
}
|
2003-02-12 08:45:53 +08:00
|
|
|
|
|
|
|
#define MYSQLI_CLEAR_RESOURCE(__id) \
|
|
|
|
{ \
|
|
|
|
mysqli_object *intern = (mysqli_object *)zend_object_store_get_object(*(__id) TSRMLS_CC);\
|
2003-03-09 07:33:12 +08:00
|
|
|
efree(intern->ptr); \
|
2003-02-12 08:45:53 +08:00
|
|
|
intern->ptr = NULL; \
|
|
|
|
}
|
|
|
|
|
2003-02-16 23:56:57 +08:00
|
|
|
#define MYSQLI_RETURN_LONG_LONG(__val) \
|
|
|
|
{ \
|
|
|
|
if ((__val) < LONG_MAX) { \
|
|
|
|
RETURN_LONG((__val)); \
|
|
|
|
} else { \
|
|
|
|
char ret[40]; \
|
|
|
|
sprintf(ret, "%llu", (__val)); \
|
|
|
|
RETURN_STRING(ret,1); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2003-02-12 08:45:53 +08:00
|
|
|
#define MYSQLI_STORE_RESULT 0
|
|
|
|
#define MYSQLI_USE_RESULT 1
|
|
|
|
|
|
|
|
/* for mysqli_fetch_assoc */
|
|
|
|
#define MYSQLI_ASSOC 1
|
|
|
|
#define MYSQLI_NUM 2
|
|
|
|
#define MYSQLI_BOTH 3
|
|
|
|
|
|
|
|
/* for mysqli_bind_param */
|
|
|
|
#define MYSQLI_BIND_INT 1
|
|
|
|
#define MYSQLI_BIND_DOUBLE 2
|
|
|
|
#define MYSQLI_BIND_STRING 3
|
|
|
|
#define MYSQLI_BIND_SEND_DATA 4
|
|
|
|
|
|
|
|
/* fetch types */
|
2003-03-04 06:36:47 +08:00
|
|
|
#define FETCH_SIMPLE 1
|
|
|
|
#define FETCH_RESULT 2
|
2003-02-12 08:45:53 +08:00
|
|
|
|
|
|
|
PHP_MYSQLI_API void mysqli_register_link(zval *return_value, void *link TSRMLS_DC);
|
|
|
|
PHP_MYSQLI_API void mysqli_register_stmt(zval *return_value, void *stmt TSRMLS_DC);
|
|
|
|
PHP_MYSQLI_API void mysqli_register_result(zval *return_value, void *result TSRMLS_DC);
|
2003-02-15 00:49:09 +08:00
|
|
|
PHP_MYSQLI_API void php_mysqli_set_error(long mysql_errno, char *mysql_err TSRMLS_DC);
|
2003-02-12 08:45:53 +08:00
|
|
|
|
|
|
|
PHP_MINIT_FUNCTION(mysqli);
|
|
|
|
PHP_MSHUTDOWN_FUNCTION(mysqli);
|
|
|
|
PHP_RINIT_FUNCTION(mysqli);
|
|
|
|
PHP_RSHUTDOWN_FUNCTION(mysqli);
|
|
|
|
PHP_MINFO_FUNCTION(mysqli);
|
|
|
|
|
|
|
|
PHP_FUNCTION(mysqli_affected_rows);
|
|
|
|
PHP_FUNCTION(mysqli_autocommit);
|
|
|
|
PHP_FUNCTION(mysqli_bind_param);
|
|
|
|
PHP_FUNCTION(mysqli_bind_result);
|
|
|
|
PHP_FUNCTION(mysqli_change_user);
|
|
|
|
PHP_FUNCTION(mysqli_character_set_name);
|
|
|
|
PHP_FUNCTION(mysqli_close);
|
|
|
|
PHP_FUNCTION(mysqli_commit);
|
|
|
|
PHP_FUNCTION(mysqli_connect);
|
|
|
|
PHP_FUNCTION(mysqli_data_seek);
|
|
|
|
PHP_FUNCTION(mysqli_debug);
|
|
|
|
PHP_FUNCTION(mysqli_disable_reads_from_master);
|
|
|
|
PHP_FUNCTION(mysqli_disable_rpl_parse);
|
|
|
|
PHP_FUNCTION(mysqli_dump_debug_info);
|
|
|
|
PHP_FUNCTION(mysqli_enable_reads_from_master);
|
|
|
|
PHP_FUNCTION(mysqli_enable_rpl_parse);
|
|
|
|
PHP_FUNCTION(mysqli_errno);
|
|
|
|
PHP_FUNCTION(mysqli_error);
|
|
|
|
PHP_FUNCTION(mysqli_execute);
|
|
|
|
PHP_FUNCTION(mysqli_fetch);
|
|
|
|
PHP_FUNCTION(mysqli_fetch_array);
|
|
|
|
PHP_FUNCTION(mysqli_fetch_assoc);
|
|
|
|
PHP_FUNCTION(mysqli_fetch_object);
|
|
|
|
PHP_FUNCTION(mysqli_fetch_field);
|
|
|
|
PHP_FUNCTION(mysqli_fetch_fields);
|
|
|
|
PHP_FUNCTION(mysqli_fetch_field_direct);
|
|
|
|
PHP_FUNCTION(mysqli_fetch_lengths);
|
|
|
|
PHP_FUNCTION(mysqli_fetch_row);
|
|
|
|
PHP_FUNCTION(mysqli_field_count);
|
|
|
|
PHP_FUNCTION(mysqli_field_seek);
|
|
|
|
PHP_FUNCTION(mysqli_field_tell);
|
|
|
|
PHP_FUNCTION(mysqli_free_result);
|
|
|
|
PHP_FUNCTION(mysqli_get_client_info);
|
|
|
|
PHP_FUNCTION(mysqli_get_host_info);
|
|
|
|
PHP_FUNCTION(mysqli_get_proto_info);
|
|
|
|
PHP_FUNCTION(mysqli_get_server_info);
|
2003-02-13 08:11:17 +08:00
|
|
|
PHP_FUNCTION(mysqli_get_server_version);
|
2003-02-12 08:45:53 +08:00
|
|
|
PHP_FUNCTION(mysqli_info);
|
|
|
|
PHP_FUNCTION(mysqli_insert_id);
|
|
|
|
PHP_FUNCTION(mysqli_init);
|
|
|
|
PHP_FUNCTION(mysqli_kill);
|
|
|
|
PHP_FUNCTION(mysqli_master_query);
|
|
|
|
PHP_FUNCTION(mysqli_num_fields);
|
|
|
|
PHP_FUNCTION(mysqli_num_rows);
|
|
|
|
PHP_FUNCTION(mysqli_options);
|
|
|
|
PHP_FUNCTION(mysqli_param_count);
|
|
|
|
PHP_FUNCTION(mysqli_ping);
|
|
|
|
PHP_FUNCTION(mysqli_prepare);
|
|
|
|
PHP_FUNCTION(mysqli_query);
|
|
|
|
PHP_FUNCTION(mysqli_prepare_result);
|
2003-03-09 07:33:12 +08:00
|
|
|
PHP_FUNCTION(mysqli_profiler);
|
2003-02-12 08:45:53 +08:00
|
|
|
PHP_FUNCTION(mysqli_read_query_result);
|
|
|
|
PHP_FUNCTION(mysqli_real_connect);
|
|
|
|
PHP_FUNCTION(mysqli_real_query);
|
|
|
|
PHP_FUNCTION(mysqli_real_escape_string);
|
|
|
|
PHP_FUNCTION(mysqli_reload);
|
|
|
|
PHP_FUNCTION(mysqli_rollback);
|
|
|
|
PHP_FUNCTION(mysqli_row_seek);
|
|
|
|
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_send_long_data);
|
|
|
|
PHP_FUNCTION(mysqli_send_query);
|
|
|
|
PHP_FUNCTION(mysqli_slave_query);
|
2003-06-21 21:35:26 +08:00
|
|
|
#if MYSQL_VERSION_ID >= 40101
|
|
|
|
PHP_FUNCTION(mysqli_sqlstate);
|
|
|
|
#endif
|
2003-02-12 08:45:53 +08:00
|
|
|
PHP_FUNCTION(mysqli_ssl_set);
|
|
|
|
PHP_FUNCTION(mysqli_stat);
|
2003-02-16 20:03:37 +08:00
|
|
|
PHP_FUNCTION(mysqli_stmt_affected_rows);
|
2003-02-12 08:45:53 +08:00
|
|
|
PHP_FUNCTION(mysqli_stmt_close);
|
|
|
|
PHP_FUNCTION(mysqli_stmt_errno);
|
|
|
|
PHP_FUNCTION(mysqli_stmt_error);
|
2003-06-22 16:46:39 +08:00
|
|
|
PHP_FUNCTION(mysqli_stmt_num_rows);
|
2003-06-21 21:35:26 +08:00
|
|
|
#if MYSQL_VERSION_ID >= 40101
|
|
|
|
PHP_FUNCTION(mysqli_stmt_sqlstate);
|
|
|
|
#endif
|
2003-02-18 16:49:00 +08:00
|
|
|
PHP_FUNCTION(mysqli_stmt_store_result);
|
2003-02-12 08:45:53 +08:00
|
|
|
PHP_FUNCTION(mysqli_store_result);
|
|
|
|
PHP_FUNCTION(mysqli_thread_id);
|
|
|
|
PHP_FUNCTION(mysqli_thread_safe);
|
|
|
|
PHP_FUNCTION(mysqli_use_result);
|
|
|
|
PHP_FUNCTION(mysqli_warning_count);
|
|
|
|
|
|
|
|
ZEND_BEGIN_MODULE_GLOBALS(mysqli)
|
2003-03-04 06:36:47 +08:00
|
|
|
long default_link;
|
|
|
|
long num_links;
|
|
|
|
long max_links;
|
|
|
|
unsigned int default_port;
|
|
|
|
char *default_host;
|
|
|
|
char *default_user;
|
|
|
|
char *default_pw;
|
|
|
|
char *default_socket;
|
|
|
|
long error_no;
|
|
|
|
char *error_msg;
|
2003-03-09 07:33:12 +08:00
|
|
|
unsigned int profiler;
|
2003-02-12 08:45:53 +08:00
|
|
|
ZEND_END_MODULE_GLOBALS(mysqli)
|
|
|
|
|
|
|
|
#ifdef ZTS
|
|
|
|
#define MyG(v) TSRMG(mysqli_globals_id, zend_mysqli_globals *, v)
|
|
|
|
#else
|
|
|
|
#define MyG(v) (mysqli_globals.v)
|
|
|
|
#endif
|
|
|
|
|
2003-03-09 07:33:12 +08:00
|
|
|
#define my_estrdup(x) (x) ? estrdup(x) : NULL
|
|
|
|
#define my_efree(x) if (x) efree(x)
|
|
|
|
|
2003-02-12 08:45:53 +08:00
|
|
|
ZEND_EXTERN_MODULE_GLOBALS(mysqli);
|
|
|
|
|
|
|
|
#endif /* PHP_MYSQLI.H */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
|
|
|
*/
|