xref: /PHP-5.5/ext/mysqli/mysqli_fe.h (revision 73c1be26)
1 /*
2   +----------------------------------------------------------------------+
3   | PHP Version 5                                                        |
4   +----------------------------------------------------------------------+
5   | Copyright (c) 1997-2015 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_begin_transaction);
29 PHP_FUNCTION(mysqli_change_user);
30 PHP_FUNCTION(mysqli_character_set_name);
31 PHP_FUNCTION(mysqli_set_charset);
32 PHP_FUNCTION(mysqli_close);
33 PHP_FUNCTION(mysqli_commit);
34 PHP_FUNCTION(mysqli_connect);
35 PHP_FUNCTION(mysqli_connect_errno);
36 PHP_FUNCTION(mysqli_connect_error);
37 PHP_FUNCTION(mysqli_data_seek);
38 PHP_FUNCTION(mysqli_debug);
39 PHP_FUNCTION(mysqli_dump_debug_info);
40 PHP_FUNCTION(mysqli_errno);
41 PHP_FUNCTION(mysqli_error);
42 PHP_FUNCTION(mysqli_error_list);
43 PHP_FUNCTION(mysqli_fetch_all);
44 PHP_FUNCTION(mysqli_fetch_array);
45 PHP_FUNCTION(mysqli_fetch_assoc);
46 PHP_FUNCTION(mysqli_fetch_object);
47 PHP_FUNCTION(mysqli_fetch_field);
48 PHP_FUNCTION(mysqli_fetch_fields);
49 PHP_FUNCTION(mysqli_fetch_field_direct);
50 PHP_FUNCTION(mysqli_fetch_lengths);
51 PHP_FUNCTION(mysqli_fetch_row);
52 PHP_FUNCTION(mysqli_field_count);
53 PHP_FUNCTION(mysqli_field_seek);
54 PHP_FUNCTION(mysqli_field_tell);
55 PHP_FUNCTION(mysqli_free_result);
56 PHP_FUNCTION(mysqli_get_cache_stats);
57 PHP_FUNCTION(mysqli_get_client_stats);
58 PHP_FUNCTION(mysqli_get_connection_stats);
59 PHP_FUNCTION(mysqli_get_charset);
60 PHP_FUNCTION(mysqli_get_client_info);
61 PHP_FUNCTION(mysqli_get_client_version);
62 PHP_FUNCTION(mysqli_get_host_info);
63 PHP_FUNCTION(mysqli_get_proto_info);
64 PHP_FUNCTION(mysqli_get_server_info);
65 PHP_FUNCTION(mysqli_get_server_version);
66 PHP_FUNCTION(mysqli_get_warnings);
67 PHP_FUNCTION(mysqli_info);
68 PHP_FUNCTION(mysqli_insert_id);
69 PHP_FUNCTION(mysqli_init);
70 PHP_FUNCTION(mysqli_kill);
71 PHP_FUNCTION(mysqli_link_construct);
72 PHP_FUNCTION(mysqli_set_local_infile_default);
73 PHP_FUNCTION(mysqli_set_local_infile_handler);
74 PHP_FUNCTION(mysqli_more_results);
75 PHP_FUNCTION(mysqli_multi_query);
76 PHP_FUNCTION(mysqli_next_result);
77 PHP_FUNCTION(mysqli_num_fields);
78 PHP_FUNCTION(mysqli_num_rows);
79 PHP_FUNCTION(mysqli_options);
80 PHP_FUNCTION(mysqli_ping);
81 PHP_FUNCTION(mysqli_poll);
82 PHP_FUNCTION(mysqli_prepare);
83 PHP_FUNCTION(mysqli_query);
84 PHP_FUNCTION(mysqli_stmt_result_metadata);
85 PHP_FUNCTION(mysqli_report);
86 PHP_FUNCTION(mysqli_read_query_result);
87 PHP_FUNCTION(mysqli_real_connect);
88 PHP_FUNCTION(mysqli_real_query);
89 PHP_FUNCTION(mysqli_real_escape_string);
90 PHP_FUNCTION(mysqli_reap_async_query);
91 PHP_FUNCTION(mysqli_rollback);
92 PHP_FUNCTION(mysqli_row_seek);
93 PHP_FUNCTION(mysqli_select_db);
94 PHP_FUNCTION(mysqli_stmt_attr_get);
95 PHP_FUNCTION(mysqli_stmt_attr_set);
96 PHP_FUNCTION(mysqli_stmt_bind_param);
97 PHP_FUNCTION(mysqli_stmt_bind_result);
98 PHP_FUNCTION(mysqli_stmt_execute);
99 PHP_FUNCTION(mysqli_stmt_field_count);
100 PHP_FUNCTION(mysqli_stmt_init);
101 PHP_FUNCTION(mysqli_stmt_prepare);
102 PHP_FUNCTION(mysqli_stmt_fetch);
103 PHP_FUNCTION(mysqli_stmt_param_count);
104 PHP_FUNCTION(mysqli_stmt_send_long_data);
105 PHP_FUNCTION(mysqli_embedded_server_end);
106 PHP_FUNCTION(mysqli_embedded_server_start);
107 PHP_FUNCTION(mysqli_sqlstate);
108 PHP_FUNCTION(mysqli_ssl_set);
109 PHP_FUNCTION(mysqli_stat);
110 PHP_FUNCTION(mysqli_refresh);
111 PHP_FUNCTION(mysqli_savepoint);
112 PHP_FUNCTION(mysqli_release_savepoint);
113 PHP_FUNCTION(mysqli_stmt_affected_rows);
114 PHP_FUNCTION(mysqli_stmt_close);
115 PHP_FUNCTION(mysqli_stmt_data_seek);
116 PHP_FUNCTION(mysqli_stmt_errno);
117 PHP_FUNCTION(mysqli_stmt_error);
118 PHP_FUNCTION(mysqli_stmt_error_list);
119 PHP_FUNCTION(mysqli_stmt_free_result);
120 PHP_FUNCTION(mysqli_stmt_get_result);
121 PHP_FUNCTION(mysqli_stmt_get_warnings);
122 PHP_FUNCTION(mysqli_stmt_reset);
123 PHP_FUNCTION(mysqli_stmt_insert_id);
124 PHP_FUNCTION(mysqli_stmt_more_results);
125 PHP_FUNCTION(mysqli_stmt_next_result);
126 PHP_FUNCTION(mysqli_stmt_num_rows);
127 PHP_FUNCTION(mysqli_stmt_sqlstate);
128 PHP_FUNCTION(mysqli_stmt_store_result);
129 PHP_FUNCTION(mysqli_store_result);
130 PHP_FUNCTION(mysqli_thread_id);
131 PHP_FUNCTION(mysqli_thread_safe);
132 PHP_FUNCTION(mysqli_use_result);
133 PHP_FUNCTION(mysqli_warning_count);
134 
135 PHP_FUNCTION(mysqli_stmt_construct);
136 PHP_FUNCTION(mysqli_result_construct);
137 PHP_FUNCTION(mysqli_driver_construct);
138 PHP_METHOD(mysqli_warning,__construct);
139 
140 #endif /* MYSQLI_FE_H */
141 
142