php-src/ext/mysql/php_mysql.h

126 lines
3.6 KiB
C
Raw Normal View History

1999-09-03 19:54:12 +00:00
/*
1999-04-21 21:26:10 +00:00
+----------------------------------------------------------------------+
| PHP Version 5 |
1999-04-21 21:26:10 +00:00
+----------------------------------------------------------------------+
2005-08-03 14:08:58 +00:00
| Copyright (c) 1997-2005 The PHP Group |
1999-04-21 21:26:10 +00:00
+----------------------------------------------------------------------+
| This source file is subject to version 3.0 of the PHP license, |
1999-09-03 19:54:12 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_0.txt. |
1999-09-03 19:54:12 +00: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. |
1999-04-21 21:26:10 +00:00
+----------------------------------------------------------------------+
2002-02-28 08:29:35 +00:00
| Author: Zeev Suraski <zeev@zend.com> |
1999-04-21 21:26:10 +00:00
+----------------------------------------------------------------------+
1999-09-03 19:54:12 +00:00
*/
1999-04-21 21:26:10 +00:00
/* $Id$ */
#ifndef PHP_MYSQL_H
#define PHP_MYSQL_H
1999-04-21 21:26:10 +00:00
#ifdef PHP_WIN32
1999-06-04 12:51:41 +00:00
#define PHP_MYSQL_API __declspec(dllexport)
#else
#define PHP_MYSQL_API
1999-04-21 21:26:10 +00:00
#endif
#if HAVE_MYSQL
#ifdef ZTS
#include "TSRM.h"
#endif
1999-09-03 19:54:12 +00:00
extern zend_module_entry mysql_module_entry;
1999-04-21 21:26:10 +00:00
#define mysql_module_ptr &mysql_module_entry
PHP_MINIT_FUNCTION(mysql);
PHP_RINIT_FUNCTION(mysql);
PHP_MSHUTDOWN_FUNCTION(mysql);
PHP_RSHUTDOWN_FUNCTION(mysql);
1999-08-02 16:06:13 +00:00
PHP_MINFO_FUNCTION(mysql);
PHP_FUNCTION(mysql_connect);
PHP_FUNCTION(mysql_pconnect);
PHP_FUNCTION(mysql_close);
PHP_FUNCTION(mysql_select_db);
2001-11-02 06:42:12 +00:00
#if MYSQL_VERSION_ID < 40000
PHP_FUNCTION(mysql_create_db);
PHP_FUNCTION(mysql_drop_db);
2001-11-02 06:42:12 +00:00
#endif
PHP_FUNCTION(mysql_query);
PHP_FUNCTION(mysql_unbuffered_query);
PHP_FUNCTION(mysql_db_query);
PHP_FUNCTION(mysql_list_dbs);
PHP_FUNCTION(mysql_list_tables);
PHP_FUNCTION(mysql_list_fields);
PHP_FUNCTION(mysql_list_processes);
PHP_FUNCTION(mysql_error);
PHP_FUNCTION(mysql_errno);
PHP_FUNCTION(mysql_affected_rows);
PHP_FUNCTION(mysql_insert_id);
PHP_FUNCTION(mysql_result);
PHP_FUNCTION(mysql_num_rows);
PHP_FUNCTION(mysql_num_fields);
PHP_FUNCTION(mysql_fetch_row);
PHP_FUNCTION(mysql_fetch_array);
PHP_FUNCTION(mysql_fetch_assoc);
PHP_FUNCTION(mysql_fetch_object);
PHP_FUNCTION(mysql_data_seek);
PHP_FUNCTION(mysql_fetch_lengths);
PHP_FUNCTION(mysql_fetch_field);
PHP_FUNCTION(mysql_field_seek);
PHP_FUNCTION(mysql_free_result);
PHP_FUNCTION(mysql_field_name);
PHP_FUNCTION(mysql_field_table);
PHP_FUNCTION(mysql_field_len);
PHP_FUNCTION(mysql_field_type);
PHP_FUNCTION(mysql_field_flags);
2000-10-11 18:27:21 +00:00
PHP_FUNCTION(mysql_escape_string);
PHP_FUNCTION(mysql_real_escape_string);
PHP_FUNCTION(mysql_get_client_info);
PHP_FUNCTION(mysql_get_host_info);
PHP_FUNCTION(mysql_get_proto_info);
PHP_FUNCTION(mysql_get_server_info);
2002-03-29 12:47:02 +00:00
PHP_FUNCTION(mysql_info);
PHP_FUNCTION(mysql_stat);
PHP_FUNCTION(mysql_thread_id);
PHP_FUNCTION(mysql_client_encoding);
2002-03-24 17:34:20 +00:00
PHP_FUNCTION(mysql_ping);
1999-04-21 21:26:10 +00:00
ZEND_BEGIN_MODULE_GLOBALS(mysql)
1999-04-21 21:26:10 +00:00
long default_link;
long num_links,num_persistent;
long max_links,max_persistent;
long allow_persistent;
long default_port;
char *default_host, *default_user, *default_password;
char *default_socket;
char *connect_error;
long connect_errno;
long connect_timeout;
long result_allocated;
long trace_mode;
2000-06-19 12:56:30 +00:00
ZEND_END_MODULE_GLOBALS(mysql)
1999-04-21 21:26:10 +00:00
#ifdef ZTS
# define MySG(v) TSRMG(mysql_globals_id, zend_mysql_globals *, v)
1999-04-21 21:26:10 +00:00
#else
# define MySG(v) (mysql_globals.v)
#endif
#else
#define mysql_module_ptr NULL
#endif
#define phpext_mysql_ptr mysql_module_ptr
#endif /* PHP_MYSQL_H */