1 | /* Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved. |
2 | |
3 | This program is free software; you can redistribute it and/or modify |
4 | it under the terms of the GNU General Public License as published by |
5 | the Free Software Foundation; version 2 of the License. |
6 | |
7 | This program is distributed in the hope that it will be useful, |
8 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
9 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
10 | GNU General Public License for more details. |
11 | |
12 | You should have received a copy of the GNU General Public License |
13 | along with this program; if not, write to the Free Software |
14 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ |
15 | |
16 | #ifndef CLIENT_SETTINGS_INCLUDED |
17 | #define CLIENT_SETTINGS_INCLUDED |
18 | #else |
19 | #error You have already included an client_settings.h and it should not be included twice |
20 | #endif /* CLIENT_SETTINGS_INCLUDED */ |
21 | |
22 | extern uint mysql_port; |
23 | extern char * mysql_unix_port; |
24 | |
25 | /* |
26 | Note: CLIENT_CAPABILITIES is also defined in sql/client_settings.h. |
27 | When adding capabilities here, consider if they should be also added to |
28 | the server's version. |
29 | */ |
30 | #define CLIENT_CAPABILITIES (CLIENT_MYSQL | \ |
31 | CLIENT_LONG_FLAG | \ |
32 | CLIENT_TRANSACTIONS | \ |
33 | CLIENT_PROTOCOL_41 | \ |
34 | CLIENT_SECURE_CONNECTION | \ |
35 | CLIENT_MULTI_RESULTS | \ |
36 | CLIENT_PS_MULTI_RESULTS | \ |
37 | CLIENT_PLUGIN_AUTH | \ |
38 | CLIENT_PLUGIN_AUTH_LENENC_CLIENT_DATA | \ |
39 | CLIENT_CONNECT_ATTRS) |
40 | |
41 | sig_handler my_pipe_sig_handler(int sig); |
42 | void read_user_name(char *name); |
43 | my_bool handle_local_infile(MYSQL *mysql, const char *net_filename); |
44 | |
45 | void mysql_read_default_options(struct st_mysql_options *options, |
46 | const char *filename,const char *group); |
47 | void mysql_detach_stmt_list(LIST **stmt_list, const char *func_name); |
48 | MYSQL * STDCALL |
49 | cli_mysql_real_connect(MYSQL *mysql,const char *host, const char *user, |
50 | const char *passwd, const char *db, |
51 | uint port, const char *unix_socket,ulong client_flag); |
52 | |
53 | void cli_mysql_close(MYSQL *mysql); |
54 | |
55 | MYSQL_FIELD * cli_list_fields(MYSQL *mysql); |
56 | my_bool cli_read_prepare_result(MYSQL *mysql, MYSQL_STMT *stmt); |
57 | MYSQL_DATA * cli_read_rows(MYSQL *mysql,MYSQL_FIELD *mysql_fields, |
58 | uint fields); |
59 | int cli_stmt_execute(MYSQL_STMT *stmt); |
60 | int cli_read_binary_rows(MYSQL_STMT *stmt); |
61 | int cli_unbuffered_fetch(MYSQL *mysql, char **row); |
62 | const char * cli_read_statistics(MYSQL *mysql); |
63 | int cli_read_change_user_result(MYSQL *mysql); |
64 | |
65 | #ifdef EMBEDDED_LIBRARY |
66 | int init_embedded_server(int argc, char **argv, char **groups); |
67 | void end_embedded_server(); |
68 | #endif /*EMBEDDED_LIBRARY*/ |
69 | |
70 | C_MODE_START |
71 | extern int mysql_init_character_set(MYSQL *mysql); |
72 | C_MODE_END |
73 | |