mysql.h 32.6 KB
Newer Older
unknown's avatar
unknown committed
1
/* Copyright (C) 2000-2003 MySQL AB
unknown's avatar
unknown committed
2 3 4 5 6 7 8

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
unknown's avatar
unknown committed
9
   but WITHOUT ANY WARRANTY; without even the implied warranty of
unknown's avatar
unknown committed
10 11 12 13 14 15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
unknown's avatar
unknown committed
16 17 18 19

#ifndef _mysql_h
#define _mysql_h

20 21 22 23 24 25 26 27
#ifdef __CYGWIN__     /* CYGWIN implements a UNIX API */
#undef WIN
#undef _WIN
#undef _WIN32
#undef _WIN64
#undef __WIN__
#endif

unknown's avatar
unknown committed
28 29 30
#ifdef	__cplusplus
extern "C" {
#endif
unknown's avatar
unknown committed
31

unknown's avatar
unknown committed
32 33
#ifndef _global_h				/* If not standard header */
#include <sys/types.h>
unknown's avatar
unknown committed
34 35 36
#ifdef __LCC__
#include <winsock.h>				/* For windows */
#endif
unknown's avatar
unknown committed
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
typedef char my_bool;
#if (defined(_WIN32) || defined(_WIN64)) && !defined(__WIN__)
#define __WIN__
#endif
#if !defined(__WIN__)
#define STDCALL
#else
#define STDCALL __stdcall
#endif
typedef char * gptr;

#ifndef my_socket_defined
#ifdef __WIN__
#define my_socket SOCKET
#else
typedef int my_socket;
53 54 55 56
#endif /* __WIN__ */
#endif /* my_socket_defined */
#endif /* _global_h */

unknown's avatar
unknown committed
57
#include "mysql_com.h"
58
#include "mysql_time.h"
unknown's avatar
unknown committed
59
#include "mysql_version.h"
60
#include "typelib.h"
unknown's avatar
unknown committed
61

unknown's avatar
unknown committed
62 63
#include "my_list.h" /* for LISTs used in 'MYSQL' and 'MYSQL_STMT' */

unknown's avatar
unknown committed
64 65 66
extern unsigned int mysql_port;
extern char *mysql_unix_port;

67 68 69
#define CLIENT_NET_READ_TIMEOUT		365*24*3600	/* Timeout on read */
#define CLIENT_NET_WRITE_TIMEOUT	365*24*3600	/* Timeout on write */

unknown's avatar
unknown committed
70 71 72 73
#ifdef __NETWARE__
#pragma pack(push, 8)		/* 8 byte alignment */
#endif

unknown's avatar
unknown committed
74 75 76
#define IS_PRI_KEY(n)	((n) & PRI_KEY_FLAG)
#define IS_NOT_NULL(n)	((n) & NOT_NULL_FLAG)
#define IS_BLOB(n)	((n) & BLOB_FLAG)
unknown's avatar
unknown committed
77
#define IS_NUM(t)	((t) <= FIELD_TYPE_INT24 || (t) == FIELD_TYPE_YEAR || (t) == FIELD_TYPE_NEWDECIMAL)
78
#define IS_NUM_FIELD(f)	 ((f)->flags & NUM_FLAG)
79
#define INTERNAL_NUM_FIELD(f) (((f)->type <= FIELD_TYPE_INT24 && ((f)->type != FIELD_TYPE_TIMESTAMP || (f)->length == 14 || (f)->length == 8)) || (f)->type == FIELD_TYPE_YEAR)
unknown's avatar
unknown committed
80

81

unknown's avatar
unknown committed
82
typedef struct st_mysql_field {
83
  char *name;                 /* Name of column */
unknown's avatar
unknown committed
84
  char *org_name;             /* Original column name, if an alias */
85 86 87
  char *table;                /* Table of column if column was a field */
  char *org_table;            /* Org table name, if table was an alias */
  char *db;                   /* Database for table */
88
  char *catalog;	      /* Catalog for table */
89
  char *def;                  /* Default value (set by mysql_list_fields) */
90 91
  unsigned long length;       /* Width of column (create length) */
  unsigned long max_length;   /* Max width for selected set */
92 93 94 95 96
  unsigned int name_length;
  unsigned int org_name_length;
  unsigned int table_length;
  unsigned int org_table_length;
  unsigned int db_length;
97
  unsigned int catalog_length;
98
  unsigned int def_length;
99 100
  unsigned int flags;         /* Div flags */
  unsigned int decimals;      /* Number of decimals in field */
101
  unsigned int charsetnr;     /* Character set */
unknown's avatar
unknown committed
102
  enum enum_field_types type; /* Type of field. See mysql_com.h for types */
unknown's avatar
unknown committed
103 104 105 106 107
} MYSQL_FIELD;

typedef char **MYSQL_ROW;		/* return data as array of strings */
typedef unsigned int MYSQL_FIELD_OFFSET; /* offset to current field */

unknown's avatar
SCRUM  
unknown committed
108
#ifndef _global_h
unknown's avatar
unknown committed
109 110 111 112 113 114 115
#if defined(NO_CLIENT_LONG_LONG)
typedef unsigned long my_ulonglong;
#elif defined (__WIN__)
typedef unsigned __int64 my_ulonglong;
#else
typedef unsigned long long my_ulonglong;
#endif
unknown's avatar
SCRUM  
unknown committed
116
#endif
unknown's avatar
unknown committed
117 118 119

#define MYSQL_COUNT_ERROR (~(my_ulonglong) 0)

unknown's avatar
unknown committed
120 121 122
/* backward compatibility define - to be removed eventually */
#define ER_WARN_DATA_TRUNCATED WARN_DATA_TRUNCATED

unknown's avatar
unknown committed
123 124 125
typedef struct st_mysql_rows {
  struct st_mysql_rows *next;		/* list of rows */
  MYSQL_ROW data;
unknown's avatar
unknown committed
126
  unsigned long length;
unknown's avatar
unknown committed
127 128 129 130
} MYSQL_ROWS;

typedef MYSQL_ROWS *MYSQL_ROW_OFFSET;	/* offset to current row */

unknown's avatar
unknown committed
131
#include "my_alloc.h"
132

133
typedef struct embedded_query_result EMBEDDED_QUERY_RESULT;
unknown's avatar
unknown committed
134 135 136 137 138
typedef struct st_mysql_data {
  my_ulonglong rows;
  unsigned int fields;
  MYSQL_ROWS *data;
  MEM_ROOT alloc;
139 140
  /* extra info for embedded library */
  struct embedded_query_result *embedded_info;
unknown's avatar
unknown committed
141 142
} MYSQL_DATA;

unknown's avatar
SCRUM  
unknown committed
143 144 145 146 147 148 149 150
enum mysql_option 
{
  MYSQL_OPT_CONNECT_TIMEOUT, MYSQL_OPT_COMPRESS, MYSQL_OPT_NAMED_PIPE,
  MYSQL_INIT_COMMAND, MYSQL_READ_DEFAULT_FILE, MYSQL_READ_DEFAULT_GROUP,
  MYSQL_SET_CHARSET_DIR, MYSQL_SET_CHARSET_NAME, MYSQL_OPT_LOCAL_INFILE,
  MYSQL_OPT_PROTOCOL, MYSQL_SHARED_MEMORY_BASE_NAME, MYSQL_OPT_READ_TIMEOUT,
  MYSQL_OPT_WRITE_TIMEOUT, MYSQL_OPT_USE_RESULT,
  MYSQL_OPT_USE_REMOTE_CONNECTION, MYSQL_OPT_USE_EMBEDDED_CONNECTION,
151
  MYSQL_OPT_GUESS_CONNECTION, MYSQL_SET_CLIENT_IP, MYSQL_SECURE_AUTH,
152 153
  MYSQL_REPORT_DATA_TRUNCATION, MYSQL_OPT_RECONNECT,
  MYSQL_OPT_SSL_VERIFY_SERVER_CERT
unknown's avatar
SCRUM  
unknown committed
154 155
};

unknown's avatar
unknown committed
156
struct st_mysql_options {
157 158
  unsigned int connect_timeout, read_timeout, write_timeout;
  unsigned int port, protocol;
159
  unsigned long client_flag;
unknown's avatar
unknown committed
160 161
  char *host,*user,*password,*unix_socket,*db;
  struct st_dynamic_array *init_commands;
unknown's avatar
unknown committed
162 163 164 165 166
  char *my_cnf_file,*my_cnf_group, *charset_dir, *charset_name;
  char *ssl_key;				/* PEM key file */
  char *ssl_cert;				/* PEM cert file */
  char *ssl_ca;					/* PEM CA file */
  char *ssl_capath;				/* PEM directory of CA-s? */
167
  char *ssl_cipher;				/* cipher to use */
168
  char *shared_memory_base_name;
169
  unsigned long max_allowed_packet;
170 171 172
  my_bool use_ssl;				/* if to use SSL or not */
  my_bool compress,named_pipe;
 /*
unknown's avatar
unknown committed
173
   On connect, find out the replication role of the server, and
174 175 176
   establish connections to all the peers
 */
  my_bool rpl_probe;
unknown's avatar
unknown committed
177 178 179
 /*
   Each call to mysql_real_query() will parse it to tell if it is a read
   or a write, and direct it to the slave or the master
180 181 182
 */
  my_bool rpl_parse;
 /*
unknown's avatar
unknown committed
183
   If set, never read from a master, only from slave, when doing
184 185 186
   a read that is replication-aware
 */
  my_bool no_master_reads;
unknown's avatar
SCRUM  
unknown committed
187
#if !defined(CHECK_EMBEDDED_DIFFERENCES) || defined(EMBEDDED_LIBRARY)
188 189
  my_bool separate_thread;
#endif
unknown's avatar
SCRUM  
unknown committed
190
  enum mysql_option methods_to_use;
unknown's avatar
SCRUM:  
unknown committed
191
  char *client_ip;
unknown's avatar
unknown committed
192 193
  /* Refuse client connecting to server if it uses old (pre-4.1.1) protocol */
  my_bool secure_auth;
194 195
  /* 0 - never report, 1 - always report (default) */
  my_bool report_data_truncation;
196 197

  /* function pointers for local infile support */
198
  int (*local_infile_init)(void **, const char *, void *);
unknown's avatar
unknown committed
199
  int (*local_infile_read)(void *, char *, unsigned int);
unknown's avatar
unknown committed
200
  void (*local_infile_end)(void *);
unknown's avatar
unknown committed
201
  int (*local_infile_error)(void *, char *, unsigned int);
202
  void *local_infile_userdata;
203
};
unknown's avatar
unknown committed
204

205 206 207 208
enum mysql_status 
{
  MYSQL_STATUS_READY,MYSQL_STATUS_GET_RESULT,MYSQL_STATUS_USE_RESULT
};
unknown's avatar
unknown committed
209

210 211
enum mysql_protocol_type 
{
212 213
  MYSQL_PROTOCOL_DEFAULT, MYSQL_PROTOCOL_TCP, MYSQL_PROTOCOL_SOCKET,
  MYSQL_PROTOCOL_PIPE, MYSQL_PROTOCOL_MEMORY
214
};
215 216 217 218
/*
  There are three types of queries - the ones that have to go to
  the master, the ones that go to a slave, and the adminstrative
  type which must happen on the pivot connectioin
219
*/
220 221 222 223
enum mysql_rpl_type 
{
  MYSQL_RPL_MASTER, MYSQL_RPL_SLAVE, MYSQL_RPL_ADMIN
};
unknown's avatar
unknown committed
224

unknown's avatar
unknown committed
225 226 227 228 229 230 231 232 233 234
typedef struct character_set
{
  unsigned int      number;     /* character set number              */
  unsigned int      state;      /* character set state               */
  const char        *csname;    /* collation name                    */
  const char        *name;      /* character set name                */
  const char        *comment;   /* comment                           */
  const char        *dir;       /* character set directory           */
  unsigned int      mbminlen;   /* min. length for multibyte strings */
  unsigned int      mbmaxlen;   /* max. length for multibyte strings */
235
} MY_CHARSET_INFO;
unknown's avatar
unknown committed
236

unknown's avatar
SCRUM  
unknown committed
237
struct st_mysql_methods;
238
struct st_mysql_stmt;
239

240 241
typedef struct st_mysql
{
unknown's avatar
unknown committed
242 243
  NET		net;			/* Communication parameters */
  gptr		connector_fd;		/* ConnectorFd for SSL */
244 245
  char		*host,*user,*passwd,*unix_socket,*server_version,*host_info,*info;
  char          *db;
unknown's avatar
unknown committed
246 247 248
  struct charset_info_st *charset;
  MYSQL_FIELD	*fields;
  MEM_ROOT	field_alloc;
unknown's avatar
unknown committed
249 250
  my_ulonglong affected_rows;
  my_ulonglong insert_id;		/* id if insert on table with NEXTNR */
251
  my_ulonglong extra_info;		/* Not used */
unknown's avatar
unknown committed
252
  unsigned long thread_id;		/* Id for connection in server */
unknown's avatar
unknown committed
253
  unsigned long packet_length;
254 255
  unsigned int	port;
  unsigned long client_flag,server_capabilities;
unknown's avatar
unknown committed
256 257 258 259
  unsigned int	protocol_version;
  unsigned int	field_count;
  unsigned int 	server_status;
  unsigned int  server_language;
260
  unsigned int	warning_count;
unknown's avatar
unknown committed
261
  struct st_mysql_options options;
unknown's avatar
unknown committed
262 263 264
  enum mysql_status status;
  my_bool	free_me;		/* If free in mysql_close */
  my_bool	reconnect;		/* set to 1 if automatic reconnect */
265

266
  /* session-wide random string */
unknown's avatar
unknown committed
267
  char	        scramble[SCRAMBLE_LENGTH+1];
268

unknown's avatar
unknown committed
269 270 271 272 273
 /*
   Set if this is the original connection, not a master or a slave we have
   added though mysql_rpl_probe() or mysql_set_master()/ mysql_add_slave()
 */
  my_bool rpl_pivot;
unknown's avatar
unknown committed
274 275 276 277
  /*
    Pointers to the master, and the next slave connections, points to
    itself if lone connection.
  */
278
  struct st_mysql* master, *next_slave;
unknown's avatar
unknown committed
279

280
  struct st_mysql* last_used_slave; /* needed for round-robin slave pick */
281 282
 /* needed for send/read/store/use result to work correctly with replication */
  struct st_mysql* last_used_con;
unknown's avatar
unknown committed
283 284

  LIST  *stmts;                     /* list of all statements */
unknown's avatar
SCRUM  
unknown committed
285
  const struct st_mysql_methods *methods;
286
  void *thd;
287 288 289 290 291
  /*
    Points to boolean flag in MYSQL_RES  or MYSQL_STMT. We set this flag 
    from mysql_stmt_close if close had to cancel result set of this object.
  */
  my_bool *unbuffered_fetch_owner;
292
#if defined(EMBEDDED_LIBRARY) || defined(EMBEDDED_LIBRARY_COMPATIBLE) || MYSQL_VERSION_ID >= 50100
293 294
  /* needed for embedded server - no net buffer to store the 'info' */
  char *info_buffer;
295
#endif
296
} MYSQL;
unknown's avatar
unknown committed
297

298
typedef struct st_mysql_res {
unknown's avatar
unknown committed
299 300 301 302
  my_ulonglong row_count;
  MYSQL_FIELD	*fields;
  MYSQL_DATA	*data;
  MYSQL_ROWS	*data_cursor;
unknown's avatar
unknown committed
303 304
  unsigned long *lengths;		/* column lengths of current row */
  MYSQL		*handle;		/* for unbuffered reads */
unknown's avatar
unknown committed
305
  MEM_ROOT	field_alloc;
unknown's avatar
unknown committed
306
  unsigned int	field_count, current_field;
unknown's avatar
unknown committed
307 308
  MYSQL_ROW	row;			/* If unbuffered read */
  MYSQL_ROW	current_row;		/* buffer to current row */
unknown's avatar
unknown committed
309
  my_bool	eof;			/* Used by mysql_fetch_row */
310 311
  /* mysql_stmt_close() had to cancel this result */
  my_bool       unbuffered_fetch_cancelled;  
312
  const struct st_mysql_methods *methods;
unknown's avatar
unknown committed
313 314
} MYSQL_RES;

unknown's avatar
unknown committed
315 316
#define MAX_MYSQL_MANAGER_ERR 256  
#define MAX_MYSQL_MANAGER_MSG 256
unknown's avatar
unknown committed
317

unknown's avatar
unknown committed
318 319 320 321 322 323
#define MANAGER_OK           200
#define MANAGER_INFO         250
#define MANAGER_ACCESS       401
#define MANAGER_CLIENT_ERR   450
#define MANAGER_INTERNAL_ERR 500

324
#if !defined(MYSQL_SERVER) && !defined(MYSQL_CLIENT)
unknown's avatar
SCRUM:  
unknown committed
325 326 327
#define MYSQL_CLIENT
#endif

unknown's avatar
unknown committed
328 329 330

typedef struct st_mysql_manager
{
unknown's avatar
unknown committed
331
  NET net;
unknown's avatar
unknown committed
332 333 334 335 336 337 338 339 340 341
  char *host,*user,*passwd;
  unsigned int port;
  my_bool free_me;
  my_bool eof;
  int cmd_status;
  int last_errno;
  char* net_buf,*net_buf_pos,*net_data_end;
  int net_buf_size;
  char last_error[MAX_MYSQL_MANAGER_ERR];
} MYSQL_MANAGER;
unknown's avatar
unknown committed
342

343 344 345 346 347 348
typedef struct st_mysql_parameters
{
  unsigned long *p_max_allowed_packet;
  unsigned long *p_net_buffer_length;
} MYSQL_PARAMETERS;

349
#if !defined(MYSQL_SERVER) && !defined(EMBEDDED_LIBRARY)
350 351 352 353
#define max_allowed_packet (*mysql_get_parameters()->p_max_allowed_packet)
#define net_buffer_length (*mysql_get_parameters()->p_net_buffer_length)
#endif

unknown's avatar
unknown committed
354 355 356 357 358
/*
  Set up and bring down the server; to ensure that applications will
  work when linked against either the standard client library or the
  embedded server library, these functions should be called.
*/
359 360
int STDCALL mysql_server_init(int argc, char **argv, char **groups);
void STDCALL mysql_server_end(void);
361 362 363 364 365 366 367 368 369 370 371
/*
  mysql_server_init/end need to be called when using libmysqld or
  libmysqlclient (exactly, mysql_server_init() is called by mysql_init() so
  you don't need to call it explicitely; but you need to call
  mysql_server_end() to free memory). The names are a bit misleading
  (mysql_SERVER* to be used when using libmysqlCLIENT). So we add more general
  names which suit well whether you're using libmysqld or libmysqlclient. We
  intend to promote these aliases over the mysql_server* ones.
*/
#define mysql_library_init mysql_server_init
#define mysql_library_end mysql_server_end
unknown's avatar
unknown committed
372

unknown's avatar
unknown committed
373
MYSQL_PARAMETERS *STDCALL mysql_get_parameters(void);
374

unknown's avatar
unknown committed
375 376 377 378 379 380
/*
  Set up and bring down a thread; these function should be called
  for each thread in an application which opens at least one MySQL
  connection.  All uses of the connection(s) should be between these
  function calls.
*/
381 382
my_bool STDCALL mysql_thread_init(void);
void STDCALL mysql_thread_end(void);
unknown's avatar
unknown committed
383

unknown's avatar
unknown committed
384 385 386 387
/*
  Functions to get information from the MYSQL and MYSQL_RES structures
  Should definitely be used if one uses shared libraries.
*/
unknown's avatar
unknown committed
388 389 390 391 392 393 394

my_ulonglong STDCALL mysql_num_rows(MYSQL_RES *res);
unsigned int STDCALL mysql_num_fields(MYSQL_RES *res);
my_bool STDCALL mysql_eof(MYSQL_RES *res);
MYSQL_FIELD *STDCALL mysql_fetch_field_direct(MYSQL_RES *res,
					      unsigned int fieldnr);
MYSQL_FIELD * STDCALL mysql_fetch_fields(MYSQL_RES *res);
unknown's avatar
unknown committed
395 396
MYSQL_ROW_OFFSET STDCALL mysql_row_tell(MYSQL_RES *res);
MYSQL_FIELD_OFFSET STDCALL mysql_field_tell(MYSQL_RES *res);
unknown's avatar
unknown committed
397 398 399 400 401

unsigned int STDCALL mysql_field_count(MYSQL *mysql);
my_ulonglong STDCALL mysql_affected_rows(MYSQL *mysql);
my_ulonglong STDCALL mysql_insert_id(MYSQL *mysql);
unsigned int STDCALL mysql_errno(MYSQL *mysql);
unknown's avatar
unknown committed
402
const char * STDCALL mysql_error(MYSQL *mysql);
403
const char *STDCALL mysql_sqlstate(MYSQL *mysql);
404
unsigned int STDCALL mysql_warning_count(MYSQL *mysql);
unknown's avatar
unknown committed
405
const char * STDCALL mysql_info(MYSQL *mysql);
unknown's avatar
unknown committed
406 407
unsigned long STDCALL mysql_thread_id(MYSQL *mysql);
const char * STDCALL mysql_character_set_name(MYSQL *mysql);
408
int          STDCALL mysql_set_character_set(MYSQL *mysql, const char *csname);
unknown's avatar
unknown committed
409 410

MYSQL *		STDCALL mysql_init(MYSQL *mysql);
411
my_bool		STDCALL mysql_ssl_set(MYSQL *mysql, const char *key,
unknown's avatar
unknown committed
412
				      const char *cert, const char *ca,
413
				      const char *capath, const char *cipher);
414
const char *    STDCALL mysql_get_ssl_cipher(MYSQL *mysql);
unknown's avatar
unknown committed
415 416 417 418 419 420 421 422
my_bool		STDCALL mysql_change_user(MYSQL *mysql, const char *user, 
					  const char *passwd, const char *db);
MYSQL *		STDCALL mysql_real_connect(MYSQL *mysql, const char *host,
					   const char *user,
					   const char *passwd,
					   const char *db,
					   unsigned int port,
					   const char *unix_socket,
423
					   unsigned long clientflag);
unknown's avatar
unknown committed
424 425
int		STDCALL mysql_select_db(MYSQL *mysql, const char *db);
int		STDCALL mysql_query(MYSQL *mysql, const char *q);
426
int		STDCALL mysql_send_query(MYSQL *mysql, const char *q,
unknown's avatar
unknown committed
427
					 unsigned long length);
unknown's avatar
unknown committed
428
int		STDCALL mysql_real_query(MYSQL *mysql, const char *q,
unknown's avatar
unknown committed
429
					unsigned long length);
unknown's avatar
SCRUM  
unknown committed
430
MYSQL_RES *     STDCALL mysql_store_result(MYSQL *mysql);
unknown's avatar
SCRUM:  
unknown committed
431
MYSQL_RES *     STDCALL mysql_use_result(MYSQL *mysql);
unknown's avatar
SCRUM  
unknown committed
432

433
/* perform query on master */
434 435 436 437
my_bool		STDCALL mysql_master_query(MYSQL *mysql, const char *q,
					   unsigned long length);
my_bool		STDCALL mysql_master_send_query(MYSQL *mysql, const char *q,
						unsigned long length);
438
/* perform query on slave */  
439 440 441 442
my_bool		STDCALL mysql_slave_query(MYSQL *mysql, const char *q,
					  unsigned long length);
my_bool		STDCALL mysql_slave_send_query(MYSQL *mysql, const char *q,
					       unsigned long length);
unknown's avatar
unknown committed
443
void        STDCALL mysql_get_character_set_info(MYSQL *mysql,
444
                           MY_CHARSET_INFO *charset);
445

446 447 448 449
/* local infile support */

#define LOCAL_INFILE_ERROR_LEN 512

unknown's avatar
unknown committed
450
void
451
mysql_set_local_infile_handler(MYSQL *mysql,
452 453
                               int (*local_infile_init)(void **, const char *,
                            void *),
unknown's avatar
unknown committed
454 455
                               int (*local_infile_read)(void *, char *,
							unsigned int),
unknown's avatar
unknown committed
456
                               void (*local_infile_end)(void *),
unknown's avatar
unknown committed
457
                               int (*local_infile_error)(void *, char*,
458 459
							 unsigned int),
                               void *);
460 461 462 463 464

void
mysql_set_local_infile_default(MYSQL *mysql);


465 466 467 468
/*
  enable/disable parsing of all queries to decide if they go on master or
  slave
*/
469 470 471 472 473 474 475 476 477
void            STDCALL mysql_enable_rpl_parse(MYSQL* mysql);
void            STDCALL mysql_disable_rpl_parse(MYSQL* mysql);
/* get the value of the parse flag */  
int             STDCALL mysql_rpl_parse_enabled(MYSQL* mysql);

/*  enable/disable reads from master */
void            STDCALL mysql_enable_reads_from_master(MYSQL* mysql);
void            STDCALL mysql_disable_reads_from_master(MYSQL* mysql);
/* get the value of the master read flag */  
478
my_bool		STDCALL mysql_reads_from_master_enabled(MYSQL* mysql);
479

480
enum mysql_rpl_type     STDCALL mysql_rpl_query_type(const char* q, int len);  
481 482

/* discover the master and its slaves */  
483
my_bool		STDCALL mysql_rpl_probe(MYSQL* mysql);
unknown's avatar
unknown committed
484

485 486
/* set the master, close/free the old one, if it is not a pivot */
int             STDCALL mysql_set_master(MYSQL* mysql, const char* host,
487 488 489
					 unsigned int port,
					 const char* user,
					 const char* passwd);
490
int             STDCALL mysql_add_slave(MYSQL* mysql, const char* host,
491 492 493
					unsigned int port,
					const char* user,
					const char* passwd);
unknown's avatar
unknown committed
494

495
int		STDCALL mysql_shutdown(MYSQL *mysql,
496
                                       enum mysql_enum_shutdown_level
497
                                       shutdown_level);
unknown's avatar
unknown committed
498 499 500 501
int		STDCALL mysql_dump_debug_info(MYSQL *mysql);
int		STDCALL mysql_refresh(MYSQL *mysql,
				     unsigned int refresh_options);
int		STDCALL mysql_kill(MYSQL *mysql,unsigned long pid);
502 503 504
int		STDCALL mysql_set_server_option(MYSQL *mysql,
						enum enum_mysql_set_option
						option);
unknown's avatar
unknown committed
505
int		STDCALL mysql_ping(MYSQL *mysql);
506 507 508
const char *	STDCALL mysql_stat(MYSQL *mysql);
const char *	STDCALL mysql_get_server_info(MYSQL *mysql);
const char *	STDCALL mysql_get_client_info(void);
509
unsigned long	STDCALL mysql_get_client_version(void);
510
const char *	STDCALL mysql_get_host_info(MYSQL *mysql);
unknown's avatar
unknown committed
511
unsigned long	STDCALL mysql_get_server_version(MYSQL *mysql);
unknown's avatar
unknown committed
512 513 514 515 516 517 518 519 520
unsigned int	STDCALL mysql_get_proto_info(MYSQL *mysql);
MYSQL_RES *	STDCALL mysql_list_dbs(MYSQL *mysql,const char *wild);
MYSQL_RES *	STDCALL mysql_list_tables(MYSQL *mysql,const char *wild);
MYSQL_RES *	STDCALL mysql_list_processes(MYSQL *mysql);
int		STDCALL mysql_options(MYSQL *mysql,enum mysql_option option,
				      const char *arg);
void		STDCALL mysql_free_result(MYSQL_RES *result);
void		STDCALL mysql_data_seek(MYSQL_RES *result,
					my_ulonglong offset);
unknown's avatar
unknown committed
521 522
MYSQL_ROW_OFFSET STDCALL mysql_row_seek(MYSQL_RES *result,
						MYSQL_ROW_OFFSET offset);
unknown's avatar
unknown committed
523 524 525 526 527
MYSQL_FIELD_OFFSET STDCALL mysql_field_seek(MYSQL_RES *result,
					   MYSQL_FIELD_OFFSET offset);
MYSQL_ROW	STDCALL mysql_fetch_row(MYSQL_RES *result);
unsigned long * STDCALL mysql_fetch_lengths(MYSQL_RES *result);
MYSQL_FIELD *	STDCALL mysql_fetch_field(MYSQL_RES *result);
unknown's avatar
SCRUM  
unknown committed
528 529
MYSQL_RES *     STDCALL mysql_list_fields(MYSQL *mysql, const char *table,
					  const char *wild);
unknown's avatar
unknown committed
530 531
unsigned long	STDCALL mysql_escape_string(char *to,const char *from,
					    unsigned long from_length);
unknown's avatar
unknown committed
532 533
unsigned long	STDCALL mysql_hex_string(char *to,const char *from,
                                         unsigned long from_length);
unknown's avatar
unknown committed
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
unsigned long STDCALL mysql_real_escape_string(MYSQL *mysql,
					       char *to,const char *from,
					       unsigned long length);
void		STDCALL mysql_debug(const char *debug);
char *		STDCALL mysql_odbc_escape_string(MYSQL *mysql,
						 char *to,
						 unsigned long to_length,
						 const char *from,
						 unsigned long from_length,
						 void *param,
						 char *
						 (*extend_buffer)
						 (void *, char *to,
						  unsigned long *length));
void 		STDCALL myodbc_remove_escape(MYSQL *mysql,char *name);
unsigned int	STDCALL mysql_thread_safe(void);
550
my_bool		STDCALL mysql_embedded(void);
unknown's avatar
unknown committed
551 552 553 554 555 556 557 558 559 560 561 562
MYSQL_MANAGER*  STDCALL mysql_manager_init(MYSQL_MANAGER* con);  
MYSQL_MANAGER*  STDCALL mysql_manager_connect(MYSQL_MANAGER* con,
					      const char* host,
					      const char* user,
					      const char* passwd,
					      unsigned int port);
void            STDCALL mysql_manager_close(MYSQL_MANAGER* con);
int             STDCALL mysql_manager_command(MYSQL_MANAGER* con,
						const char* cmd, int cmd_len);
int             STDCALL mysql_manager_fetch_line(MYSQL_MANAGER* con,
						  char* res_buf,
						 int res_buf_size);
unknown's avatar
SCRUM:  
unknown committed
563
my_bool         STDCALL mysql_read_query_result(MYSQL *mysql);
564 565 566


/*
unknown's avatar
unknown committed
567
  The following definitions are added for the enhanced 
568 569 570 571
  client-server protocol
*/

/* statement state */
572 573 574 575 576
enum enum_mysql_stmt_state
{
  MYSQL_STMT_INIT_DONE= 1, MYSQL_STMT_PREPARE_DONE, MYSQL_STMT_EXECUTE_DONE,
  MYSQL_STMT_FETCH_DONE
};
577

unknown's avatar
unknown committed
578

579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
/*
  This structure is used to define bind information, and
  internally by the client library.
  Public members with their descriptions are listed below
  (conventionally `On input' refers to the binds given to
  mysql_stmt_bind_param, `On output' refers to the binds given
  to mysql_stmt_bind_result):

  buffer_type    - One of the MYSQL_* types, used to describe
                   the host language type of buffer.
                   On output: if column type is different from
                   buffer_type, column value is automatically converted
                   to buffer_type before it is stored in the buffer.
  buffer         - On input: points to the buffer with input data.
                   On output: points to the buffer capable to store
                   output data.
                   The type of memory pointed by buffer must correspond
                   to buffer_type. See the correspondence table in
                   the comment to mysql_stmt_bind_param.

  The two above members are mandatory for any kind of bind.

  buffer_length  - the length of the buffer. You don't have to set
                   it for any fixed length buffer: float, double,
                   int, etc. It must be set however for variable-length
                   types, such as BLOBs or STRINGs.

  length         - On input: in case when lengths of input values
                   are different for each execute, you can set this to
                   point at a variable containining value length. This
                   way the value length can be different in each execute.
                   If length is not NULL, buffer_length is not used.
                   Note, length can even point at buffer_length if
                   you keep bind structures around while fetching:
                   this way you can change buffer_length before
                   each execution, everything will work ok.
                   On output: if length is set, mysql_stmt_fetch will
                   write column length into it.

  is_null        - On input: points to a boolean variable that should
                   be set to TRUE for NULL values.
                   This member is useful only if your data may be
                   NULL in some but not all cases.
                   If your data is never NULL, is_null should be set to 0.
                   If your data is always NULL, set buffer_type
                   to MYSQL_TYPE_NULL, and is_null will not be used.

  is_unsigned    - On input: used to signify that values provided for one
                   of numeric types are unsigned.
                   On output describes signedness of the output buffer.
                   If, taking into account is_unsigned flag, column data
                   is out of range of the output buffer, data for this column
                   is regarded truncated. Note that this has no correspondence
                   to the sign of result set column, if you need to find it out
                   use mysql_stmt_result_metadata.
  error          - where to write a truncation error if it is present.
                   possible error value is:
                   0  no truncation
                   1  value is out of range or buffer is too small

  Please note that MYSQL_BIND also has internals members.
*/

642 643
typedef struct st_mysql_bind
{
unknown's avatar
unknown committed
644
  unsigned long	*length;          /* output length pointer */
unknown's avatar
unknown committed
645
  my_bool       *is_null;	  /* Pointer to null indicator */
646
  void		*buffer;	  /* buffer to get/put data */
647 648
  /* set this if you want to track data truncations happened during fetch */
  my_bool       *error;
649
  enum enum_field_types buffer_type;	/* buffer type */
650 651 652
  /* output buffer length, must be set when fetching str/binary */
  unsigned long buffer_length;
  unsigned char *row_ptr;         /* for the current data position */
unknown's avatar
unknown committed
653
  unsigned long offset;           /* offset position for char/binary fetch */
654
  unsigned long	length_value;     /* Used if length is 0 */
unknown's avatar
unknown committed
655
  unsigned int	param_number;	  /* For null count and error messages */
656
  unsigned int  pack_length;	  /* Internal length for packed data */
657
  my_bool       error_value;      /* used if error is 0 */
658
  my_bool       is_unsigned;      /* set if integer type is unsigned */
unknown's avatar
unknown committed
659
  my_bool	long_data_used;	  /* If used with mysql_send_long_data */
660
  my_bool	is_null_value;    /* Used if is_null is 0 */
661
  void (*store_param_func)(NET *net, struct st_mysql_bind *param);
662 663
  void (*fetch_result)(struct st_mysql_bind *, MYSQL_FIELD *,
                       unsigned char **row);
664 665
  void (*skip_result)(struct st_mysql_bind *, MYSQL_FIELD *,
		      unsigned char **row);
666 667 668
} MYSQL_BIND;


669 670 671
/* statement handler */
typedef struct st_mysql_stmt
{
672
  MEM_ROOT       mem_root;             /* root allocations */
unknown's avatar
unknown committed
673
  LIST           list;                 /* list to keep track of all stmts */
674 675 676 677
  MYSQL          *mysql;               /* connection handle */
  MYSQL_BIND     *params;              /* input parameters */
  MYSQL_BIND     *bind;                /* output parameters */
  MYSQL_FIELD    *fields;              /* result set metadata */
678 679
  MYSQL_DATA     result;               /* cached result set */
  MYSQL_ROWS     *data_cursor;         /* current row in cached result */
680 681
  /* copy of mysql->affected_rows after statement execution */
  my_ulonglong   affected_rows;
682
  my_ulonglong   insert_id;            /* copy of mysql->insert_id */
683 684 685 686 687 688
  /*
    mysql_stmt_fetch() calls this function to fetch one row (it's different
    for buffered, unbuffered and cursor fetch).
  */
  int            (*read_row_func)(struct st_mysql_stmt *stmt, 
                                  unsigned char **row);
unknown's avatar
unknown committed
689
  unsigned long	 stmt_id;	       /* Id for prepared statement */
690
  unsigned long  flags;                /* i.e. type of cursor to open */
691
  unsigned long  prefetch_rows;        /* number of rows per one COM_FETCH */
692 693 694 695 696
  /*
    Copied from mysql->server_status after execute/fetch to know
    server-side cursor status for this statement.
  */
  unsigned int   server_status;
unknown's avatar
unknown committed
697
  unsigned int	 last_errno;	       /* error code */
unknown's avatar
unknown committed
698
  unsigned int   param_count;          /* input parameter count */
699 700
  unsigned int   field_count;          /* number of columns in result set */
  enum enum_mysql_stmt_state state;    /* statement state */
unknown's avatar
unknown committed
701
  char		 last_error[MYSQL_ERRMSG_SIZE]; /* error message */
702
  char		 sqlstate[SQLSTATE_LENGTH+1];
703 704 705
  /* Types of input parameters should be sent to server */
  my_bool        send_types_to_server;
  my_bool        bind_param_done;      /* input buffers were supplied */
706
  unsigned char  bind_result_done;     /* output buffers were supplied */
707 708
  /* mysql_stmt_close() had to cancel this result */
  my_bool       unbuffered_fetch_cancelled;  
709 710 711 712 713
  /*
    Is set to true if we need to calculate field->max_length for 
    metadata fields when doing mysql_stmt_store_result.
  */
  my_bool       update_max_length;     
714 715
} MYSQL_STMT;

716 717 718 719 720 721 722 723 724
enum enum_stmt_attr_type
{
  /*
    When doing mysql_stmt_store_result calculate max_length attribute
    of statement metadata. This is to be consistent with the old API, 
    where this was done automatically.
    In the new API we do that only by request because it slows down
    mysql_stmt_store_result sufficiently.
  */
725 726 727 728 729
  STMT_ATTR_UPDATE_MAX_LENGTH,
  /*
    unsigned long with combination of cursor flags (read only, for update,
    etc)
  */
730 731 732 733 734 735
  STMT_ATTR_CURSOR_TYPE,
  /*
    Amount of rows to retrieve from server per one fetch if using cursors.
    Accepts unsigned long attribute in the range 1 - ulong_max
  */
  STMT_ATTR_PREFETCH_ROWS
736 737
};

738

unknown's avatar
SCRUM  
unknown committed
739 740
typedef struct st_mysql_methods
{
unknown's avatar
unknown committed
741 742 743 744 745 746 747
  my_bool (*read_query_result)(MYSQL *mysql);
  my_bool (*advanced_command)(MYSQL *mysql,
			      enum enum_server_command command,
			      const char *header,
			      unsigned long header_length,
			      const char *arg,
			      unsigned long arg_length,
748 749
			      my_bool skip_check,
                              MYSQL_STMT *stmt);
unknown's avatar
unknown committed
750 751 752 753 754
  MYSQL_DATA *(*read_rows)(MYSQL *mysql,MYSQL_FIELD *mysql_fields,
			   unsigned int fields);
  MYSQL_RES * (*use_result)(MYSQL *mysql);
  void (*fetch_lengths)(unsigned long *to, 
			MYSQL_ROW column, unsigned int field_count);
unknown's avatar
unknown committed
755
  void (*flush_use_result)(MYSQL *mysql);
unknown's avatar
SCRUM  
unknown committed
756
#if !defined(MYSQL_SERVER) || defined(EMBEDDED_LIBRARY)
unknown's avatar
unknown committed
757 758 759
  MYSQL_FIELD * (*list_fields)(MYSQL *mysql);
  my_bool (*read_prepare_result)(MYSQL *mysql, MYSQL_STMT *stmt);
  int (*stmt_execute)(MYSQL_STMT *stmt);
760
  int (*read_binary_rows)(MYSQL_STMT *stmt);
unknown's avatar
unknown committed
761 762
  int (*unbuffered_fetch)(MYSQL *mysql, char **row);
  void (*free_embedded_thd)(MYSQL *mysql);
unknown's avatar
Rename:  
unknown committed
763
  const char *(*read_statistics)(MYSQL *mysql);
unknown's avatar
unknown committed
764
  my_bool (*next_result)(MYSQL *mysql);
765
  int (*read_change_user_result)(MYSQL *mysql, char *buff, const char *passwd);
766
  int (*read_rows_from_cursor)(MYSQL_STMT *stmt);
unknown's avatar
SCRUM  
unknown committed
767
#endif
unknown's avatar
SCRUM  
unknown committed
768 769
} MYSQL_METHODS;

770 771 772 773 774 775 776 777 778 779 780

MYSQL_STMT * STDCALL mysql_stmt_init(MYSQL *mysql);
int STDCALL mysql_stmt_prepare(MYSQL_STMT *stmt, const char *query,
                               unsigned long length);
int STDCALL mysql_stmt_execute(MYSQL_STMT *stmt);
int STDCALL mysql_stmt_fetch(MYSQL_STMT *stmt);
int STDCALL mysql_stmt_fetch_column(MYSQL_STMT *stmt, MYSQL_BIND *bind, 
                                    unsigned int column,
                                    unsigned long offset);
int STDCALL mysql_stmt_store_result(MYSQL_STMT *stmt);
unsigned long STDCALL mysql_stmt_param_count(MYSQL_STMT * stmt);
781 782 783 784 785 786
my_bool STDCALL mysql_stmt_attr_set(MYSQL_STMT *stmt,
                                    enum enum_stmt_attr_type attr_type,
                                    const void *attr);
my_bool STDCALL mysql_stmt_attr_get(MYSQL_STMT *stmt,
                                    enum enum_stmt_attr_type attr_type,
                                    void *attr);
787 788
my_bool STDCALL mysql_stmt_bind_param(MYSQL_STMT * stmt, MYSQL_BIND * bnd);
my_bool STDCALL mysql_stmt_bind_result(MYSQL_STMT * stmt, MYSQL_BIND * bnd);
789
my_bool STDCALL mysql_stmt_close(MYSQL_STMT * stmt);
790
my_bool STDCALL mysql_stmt_reset(MYSQL_STMT * stmt);
791
my_bool STDCALL mysql_stmt_free_result(MYSQL_STMT *stmt);
792 793 794 795 796 797
my_bool STDCALL mysql_stmt_send_long_data(MYSQL_STMT *stmt, 
                                          unsigned int param_number,
                                          const char *data, 
                                          unsigned long length);
MYSQL_RES *STDCALL mysql_stmt_result_metadata(MYSQL_STMT *stmt);
MYSQL_RES *STDCALL mysql_stmt_param_metadata(MYSQL_STMT *stmt);
798
unsigned int STDCALL mysql_stmt_errno(MYSQL_STMT * stmt);
799
const char *STDCALL mysql_stmt_error(MYSQL_STMT * stmt);
800
const char *STDCALL mysql_stmt_sqlstate(MYSQL_STMT * stmt);
801 802 803 804
MYSQL_ROW_OFFSET STDCALL mysql_stmt_row_seek(MYSQL_STMT *stmt, 
                                             MYSQL_ROW_OFFSET offset);
MYSQL_ROW_OFFSET STDCALL mysql_stmt_row_tell(MYSQL_STMT *stmt);
void STDCALL mysql_stmt_data_seek(MYSQL_STMT *stmt, my_ulonglong offset);
805
my_ulonglong STDCALL mysql_stmt_num_rows(MYSQL_STMT *stmt);
806
my_ulonglong STDCALL mysql_stmt_affected_rows(MYSQL_STMT *stmt);
807
my_ulonglong STDCALL mysql_stmt_insert_id(MYSQL_STMT *stmt);
unknown's avatar
unknown committed
808
unsigned int STDCALL mysql_stmt_field_count(MYSQL_STMT *stmt);
809 810 811 812 813 814

my_bool STDCALL mysql_commit(MYSQL * mysql);
my_bool STDCALL mysql_rollback(MYSQL * mysql);
my_bool STDCALL mysql_autocommit(MYSQL * mysql, my_bool auto_mode);
my_bool STDCALL mysql_more_results(MYSQL *mysql);
int STDCALL mysql_next_result(MYSQL *mysql);
815 816
void STDCALL mysql_close(MYSQL *sock);

817

818
/* status return codes */
819 820
#define MYSQL_NO_DATA        100
#define MYSQL_DATA_TRUNCATED 101
821

unknown's avatar
unknown committed
822 823
#define mysql_reload(mysql) mysql_refresh((mysql),REFRESH_GRANT)

unknown's avatar
unknown committed
824
#ifdef USE_OLD_FUNCTIONS
825 826 827 828
MYSQL *		STDCALL mysql_connect(MYSQL *mysql, const char *host,
				      const char *user, const char *passwd);
int		STDCALL mysql_create_db(MYSQL *mysql, const char *DB);
int		STDCALL mysql_drop_db(MYSQL *mysql, const char *DB);
unknown's avatar
unknown committed
829
#define	 mysql_reload(mysql) mysql_refresh((mysql),REFRESH_GRANT)
830
#endif
831
#define HAVE_MYSQL_REAL_CONNECT
832

unknown's avatar
unknown committed
833 834 835 836 837
/*
  The following functions are mainly exported because of mysqlbinlog;
  They are not for general usage
*/

unknown's avatar
SCRUM  
unknown committed
838
#define simple_command(mysql, command, arg, length, skip_check) \
839 840 841 842 843
  (*(mysql)->methods->advanced_command)(mysql, command, NullS,  \
                                        0, arg, length, skip_check, NULL)
#define stmt_command(mysql, command, arg, length, stmt) \
  (*(mysql)->methods->advanced_command)(mysql, command, NullS,  \
                                        0, arg, length, 1, stmt)
unknown's avatar
unknown committed
844

unknown's avatar
unknown committed
845 846 847
#ifdef __NETWARE__
#pragma pack(pop)		/* restore alignment */
#endif
unknown's avatar
unknown committed
848 849 850 851 852

#ifdef	__cplusplus
}
#endif

unknown's avatar
unknown committed
853
#endif /* _mysql_h */