xref: /PHP-5.3/ext/mysqli/mysqli_fe.h (revision a2045ff3)
1 /*
2   +----------------------------------------------------------------------+
3   | PHP Version 5                                                        |
4   +----------------------------------------------------------------------+
5   | Copyright (c) 1997-2013 The PHP Group                                |
6   +----------------------------------------------------------------------+
7   | This source file is subject to version 3.01 of the PHP license,      |
8   | that is bundled with this package in the file LICENSE, and is        |
9   | available through the world-wide-web at the following url:           |
10   | http://www.php.net/license/3_01.txt                                  |
11   | If you did not receive a copy of the PHP license and are unable to   |
12   | obtain it through the world-wide-web, please send a note to          |
13   | license@php.net so we can mail you a copy immediately.               |
14   +----------------------------------------------------------------------+
15   | Author: Georg Richter <georg@php.net>                                |
16             Andrey Hristov <andrey@php.net>                              |
17   +----------------------------------------------------------------------+
18 
19   $Id: php_mysqli_structs.h 302179 2010-08-13 09:57:04Z andrey $
20 */
21 
22 #ifndef MYSQLI_FE_H
23 #define MYSQLI_FE_H
24 
25 PHP_FUNCTION(mysqli);
26 PHP_FUNCTION(mysqli_affected_rows);
27 PHP_FUNCTION(mysqli_autocommit);
28 PHP_FUNCTION(mysqli_change_user);
29 PHP_FUNCTION(mysqli_character_set_name);
30 PHP_FUNCTION(mysqli_set_charset);
31 PHP_FUNCTION(mysqli_close);
32 PHP_FUNCTION(mysqli_commit);
33 PHP_FUNCTION(mysqli_connect);
34 PHP_FUNCTION(mysqli_connect_errno);
35 PHP_FUNCTION(mysqli_connect_error);
36 PHP_FUNCTION(mysqli_data_seek);
37 PHP_FUNCTION(mysqli_debug);
38 PHP_FUNCTION(mysqli_dump_debug_info);
39 PHP_FUNCTION(mysqli_errno);
40 PHP_FUNCTION(mysqli_error);
41 PHP_FUNCTION(mysqli_fetch_all);
42 PHP_FUNCTION(mysqli_fetch_array);
43 PHP_FUNCTION(mysqli_fetch_assoc);
44 PHP_FUNCTION(mysqli_fetch_object);
45 PHP_FUNCTION(mysqli_fetch_field);
46 PHP_FUNCTION(mysqli_fetch_fields);
47 PHP_FUNCTION(mysqli_fetch_field_direct);
48 PHP_FUNCTION(mysqli_fetch_lengths);
49 PHP_FUNCTION(mysqli_fetch_row);
50 PHP_FUNCTION(mysqli_field_count);
51 PHP_FUNCTION(mysqli_field_seek);
52 PHP_FUNCTION(mysqli_field_tell);
53 PHP_FUNCTION(mysqli_free_result);
54 PHP_FUNCTION(mysqli_get_cache_stats);
55 PHP_FUNCTION(mysqli_get_client_stats);
56 PHP_FUNCTION(mysqli_get_connection_stats);
57 PHP_FUNCTION(mysqli_get_charset);
58 PHP_FUNCTION(mysqli_get_client_info);
59 PHP_FUNCTION(mysqli_get_client_version);
60 PHP_FUNCTION(mysqli_get_host_info);
61 PHP_FUNCTION(mysqli_get_proto_info);
62 PHP_FUNCTION(mysqli_get_server_info);
63 PHP_FUNCTION(mysqli_get_server_version);
64 PHP_FUNCTION(mysqli_get_warnings);
65 PHP_FUNCTION(mysqli_info);
66 PHP_FUNCTION(mysqli_insert_id);
67 PHP_FUNCTION(mysqli_init);
68 PHP_FUNCTION(mysqli_kill);
69 PHP_FUNCTION(mysqli_link_construct);
70 PHP_FUNCTION(mysqli_set_local_infile_default);
71 PHP_FUNCTION(mysqli_set_local_infile_handler);
72 PHP_FUNCTION(mysqli_more_results);
73 PHP_FUNCTION(mysqli_multi_query);
74 PHP_FUNCTION(mysqli_next_result);
75 PHP_FUNCTION(mysqli_num_fields);
76 PHP_FUNCTION(mysqli_num_rows);
77 PHP_FUNCTION(mysqli_options);
78 PHP_FUNCTION(mysqli_ping);
79 PHP_FUNCTION(mysqli_poll);
80 PHP_FUNCTION(mysqli_prepare);
81 PHP_FUNCTION(mysqli_query);
82 PHP_FUNCTION(mysqli_stmt_result_metadata);
83 PHP_FUNCTION(mysqli_report);
84 PHP_FUNCTION(mysqli_read_query_result);
85 PHP_FUNCTION(mysqli_real_connect);
86 PHP_FUNCTION(mysqli_real_query);
87 PHP_FUNCTION(mysqli_real_escape_string);
88 PHP_FUNCTION(mysqli_reap_async_query);
89 PHP_FUNCTION(mysqli_rollback);
90 PHP_FUNCTION(mysqli_row_seek);
91 PHP_FUNCTION(mysqli_select_db);
92 PHP_FUNCTION(mysqli_stmt_attr_get);
93 PHP_FUNCTION(mysqli_stmt_attr_set);
94 PHP_FUNCTION(mysqli_stmt_bind_param);
95 PHP_FUNCTION(mysqli_stmt_bind_result);
96 PHP_FUNCTION(mysqli_stmt_execute);
97 PHP_FUNCTION(mysqli_stmt_field_count);
98 PHP_FUNCTION(mysqli_stmt_init);
99 PHP_FUNCTION(mysqli_stmt_prepare);
100 PHP_FUNCTION(mysqli_stmt_fetch);
101 PHP_FUNCTION(mysqli_stmt_param_count);
102 PHP_FUNCTION(mysqli_stmt_send_long_data);
103 PHP_FUNCTION(mysqli_embedded_server_end);
104 PHP_FUNCTION(mysqli_embedded_server_start);
105 PHP_FUNCTION(mysqli_sqlstate);
106 PHP_FUNCTION(mysqli_ssl_set);
107 PHP_FUNCTION(mysqli_stat);
108 PHP_FUNCTION(mysqli_refresh);
109 PHP_FUNCTION(mysqli_stmt_affected_rows);
110 PHP_FUNCTION(mysqli_stmt_close);
111 PHP_FUNCTION(mysqli_stmt_data_seek);
112 PHP_FUNCTION(mysqli_stmt_errno);
113 PHP_FUNCTION(mysqli_stmt_error);
114 PHP_FUNCTION(mysqli_stmt_free_result);
115 PHP_FUNCTION(mysqli_stmt_get_result);
116 PHP_FUNCTION(mysqli_stmt_get_warnings);
117 PHP_FUNCTION(mysqli_stmt_reset);
118 PHP_FUNCTION(mysqli_stmt_insert_id);
119 PHP_FUNCTION(mysqli_stmt_more_results);
120 PHP_FUNCTION(mysqli_stmt_next_result);
121 PHP_FUNCTION(mysqli_stmt_num_rows);
122 PHP_FUNCTION(mysqli_stmt_sqlstate);
123 PHP_FUNCTION(mysqli_stmt_store_result);
124 PHP_FUNCTION(mysqli_store_result);
125 PHP_FUNCTION(mysqli_thread_id);
126 PHP_FUNCTION(mysqli_thread_safe);
127 PHP_FUNCTION(mysqli_use_result);
128 PHP_FUNCTION(mysqli_warning_count);
129 
130 PHP_FUNCTION(mysqli_stmt_construct);
131 PHP_FUNCTION(mysqli_result_construct);
132 PHP_FUNCTION(mysqli_driver_construct);
133 PHP_METHOD(mysqli_warning,__construct);
134 
135 #endif /* MYSQLI_FE_H */
136