236.1.23
by Monty Taylor
Cleaned header headers. |
1 |
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
|
3 |
*
|
|
4 |
* Copyright (C) 2008 MySQL
|
|
5 |
*
|
|
6 |
* This program is free software; you can redistribute it and/or modify
|
|
7 |
* it under the terms of the GNU General Public License as published by
|
|
8 |
* the Free Software Foundation; either version 2 of the License, or
|
|
9 |
* (at your option) any later version.
|
|
10 |
*
|
|
11 |
* This program is distributed in the hope that it will be useful,
|
|
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14 |
* GNU General Public License for more details.
|
|
15 |
*
|
|
16 |
* You should have received a copy of the GNU General Public License
|
|
17 |
* along with this program; if not, write to the Free Software
|
|
18 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
19 |
*/
|
|
20 |
||
21 |
#ifndef _libdrizzle_client_settings_h
|
|
22 |
#define _libdrizzle_client_settings_h
|
|
1
by brian
clean slate |
23 |
|
24 |
#define CLIENT_CAPABILITIES (CLIENT_LONG_PASSWORD | CLIENT_LONG_FLAG | \
|
|
25 |
CLIENT_TRANSACTIONS | \
|
|
26 |
CLIENT_PROTOCOL_41 | CLIENT_SECURE_CONNECTION)
|
|
27 |
||
28 |
sig_handler my_pipe_sig_handler(int sig); |
|
207.2.3
by Toru Maesaka
Merge from trunk and conflicts resolved |
29 |
bool handle_local_infile(DRIZZLE *drizzle, const char *net_filename); |
1
by brian
clean slate |
30 |
|
31 |
||
28.1.35
by Monty Taylor
Removed all references to THREAD. |
32 |
/* TODO: Do we still need these now that there's not non-threaded stuff? */
|
1
by brian
clean slate |
33 |
#define init_sigpipe_variables
|
206.3.1
by Patrick Galbraith
Most everything working with client rename |
34 |
#define set_sigpipe(drizzle)
|
35 |
#define reset_sigpipe(drizzle)
|
|
1
by brian
clean slate |
36 |
|
37 |
void mysql_detach_stmt_list(LIST **stmt_list, const char *func_name); |
|
206.3.1
by Patrick Galbraith
Most everything working with client rename |
38 |
DRIZZLE * STDCALL |
39 |
cli_drizzle_connect(DRIZZLE *drizzle,const char *host, const char *user, |
|
1
by brian
clean slate |
40 |
const char *passwd, const char *db, |
41 |
uint port, const char *unix_socket,ulong client_flag); |
|
42 |
||
206.3.1
by Patrick Galbraith
Most everything working with client rename |
43 |
void cli_drizzle_close(DRIZZLE *drizzle); |
1
by brian
clean slate |
44 |
|
206.3.1
by Patrick Galbraith
Most everything working with client rename |
45 |
DRIZZLE_FIELD * cli_list_fields(DRIZZLE *drizzle); |
46 |
DRIZZLE_DATA * cli_read_rows(DRIZZLE *drizzle,DRIZZLE_FIELD *drizzle_fields, |
|
1
by brian
clean slate |
47 |
uint fields); |
206.3.1
by Patrick Galbraith
Most everything working with client rename |
48 |
int cli_unbuffered_fetch(DRIZZLE *drizzle, char **row); |
49 |
const char * cli_read_statistics(DRIZZLE *drizzle); |
|
236.3.6
by Andrey Hristov
read_change_user_result doesn't neet buffer and password. They were needed to handle 3.23 authentication, which is no more. |
50 |
int cli_read_change_user_result(DRIZZLE *drizzle); |
1
by brian
clean slate |
51 |
|
52 |
C_MODE_START
|
|
206.3.1
by Patrick Galbraith
Most everything working with client rename |
53 |
extern int drizzle_init_character_set(DRIZZLE *drizzle); |
1
by brian
clean slate |
54 |
C_MODE_END
|
236.1.23
by Monty Taylor
Cleaned header headers. |
55 |
|
56 |
#endif
|