MySQL 8.0.33
Source Code Documentation
mysql.h
Go to the documentation of this file.
1/* Copyright (c) 2000, 2023, Oracle and/or its affiliates.
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, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is also distributed with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have included with MySQL.
13
14 Without limiting anything contained in the foregoing, this file,
15 which is part of C Driver for MySQL (Connector/C), is also subject to the
16 Universal FOSS Exception, version 1.0, a copy of which can be found at
17 http://oss.oracle.com/licenses/universal-foss-exception.
18
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License, version 2.0, for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
27
28/**
29 @file include/mysql.h
30 This file defines the client API to MySQL and also the ABI of the
31 dynamically linked libmysqlclient.
32
33 The ABI should never be changed in a released product of MySQL,
34 thus you need to take great care when changing the file. In case
35 the file is changed so the ABI is broken, you must also update
36 the SHARED_LIB_MAJOR_VERSION in cmake/mysql_version.cmake
37*/
38
39#ifndef _mysql_h
40#define _mysql_h
41
42#ifndef MYSQL_ABI_CHECK
43#include <stdbool.h>
44#include <stddef.h>
45#include <stdint.h>
46#include <sys/types.h>
47#endif
48
49// Legacy definition for the benefit of old code. Use uint64_t in new code.
50// If you get warnings from printf, use the PRIu64 macro, or, if you need
51// compatibility with older versions of the client library, cast
52// before printing.
53typedef uint64_t my_ulonglong;
54
55#ifndef my_socket_defined
56#define my_socket_defined
57#if defined(_WIN32) && !defined(MYSQL_ABI_CHECK)
58#include <windows.h>
59#ifdef WIN32_LEAN_AND_MEAN
60#include <winsock2.h>
61#endif
62#define my_socket SOCKET
63#else
64typedef int my_socket;
65#endif /* _WIN32 && ! MYSQL_ABI_CHECK */
66#endif /* my_socket_defined */
67
68// Small extra definition to avoid pulling in my_compiler.h in client code.
69// IWYU pragma: no_include "my_compiler.h"
70#ifndef MY_COMPILER_INCLUDED
71#if !defined(_WIN32) || defined(MYSQL_ABI_CHECK)
72#define STDCALL
73#else
74#define STDCALL __stdcall
75#endif
76#endif /* MY_COMPILER_INCLUDED */
77
78#include "field_types.h"
79#include "my_list.h"
80#include "mysql_com.h"
81
82/* Include declarations of plug-in API */
83#include "mysql/client_plugin.h" // IWYU pragma: keep
84
85/*
86 The client should be able to know which version it is compiled against,
87 even if mysql.h doesn't use this information directly.
88*/
89#include "mysql_version.h" // IWYU pragma: keep
90
91// MYSQL_TIME is part of our public API.
92#include "mysql_time.h" // IWYU pragma: keep
93
94// The error messages are part of our public API.
95#include "errmsg.h" // IWYU pragma: keep
96
97#ifdef __cplusplus
98extern "C" {
99#endif
100
101extern unsigned int mysql_port;
102extern char *mysql_unix_port;
103
104#define CLIENT_NET_RETRY_COUNT 1 /* Retry count */
105#define CLIENT_NET_READ_TIMEOUT 365 * 24 * 3600 /* Timeout on read */
106#define CLIENT_NET_WRITE_TIMEOUT 365 * 24 * 3600 /* Timeout on write */
107
108#define IS_PRI_KEY(n) ((n)&PRI_KEY_FLAG)
109#define IS_NOT_NULL(n) ((n)&NOT_NULL_FLAG)
110#define IS_BLOB(n) ((n)&BLOB_FLAG)
111/**
112 Returns true if the value is a number which does not need quotes for
113 the sql_lex.cc parser to parse correctly.
114*/
115#define IS_NUM(t) \
116 (((t) <= MYSQL_TYPE_INT24 && (t) != MYSQL_TYPE_TIMESTAMP) || \
117 (t) == MYSQL_TYPE_YEAR || (t) == MYSQL_TYPE_NEWDECIMAL)
118#define IS_LONGDATA(t) ((t) >= MYSQL_TYPE_TINY_BLOB && (t) <= MYSQL_TYPE_STRING)
119
120typedef struct MYSQL_FIELD {
121 char *name; /* Name of column */
122 char *org_name; /* Original column name, if an alias */
123 char *table; /* Table of column if column was a field */
124 char *org_table; /* Org table name, if table was an alias */
125 char *db; /* Database for table */
126 char *catalog; /* Catalog for table */
127 char *def; /* Default value (set by mysql_list_fields) */
128 unsigned long length; /* Width of column (create length) */
129 unsigned long max_length; /* Max width for selected set */
130 unsigned int name_length;
131 unsigned int org_name_length;
132 unsigned int table_length;
133 unsigned int org_table_length;
134 unsigned int db_length;
135 unsigned int catalog_length;
136 unsigned int def_length;
137 unsigned int flags; /* Div flags */
138 unsigned int decimals; /* Number of decimals in field */
139 unsigned int charsetnr; /* Character set */
140 enum enum_field_types type; /* Type of field. See mysql_com.h for types */
143
144typedef char **MYSQL_ROW; /* return data as array of strings */
145typedef unsigned int MYSQL_FIELD_OFFSET; /* offset to current field */
146
147#define MYSQL_COUNT_ERROR (~(uint64_t)0)
148
149/* backward compatibility define - to be removed eventually */
150#define ER_WARN_DATA_TRUNCATED WARN_DATA_TRUNCATED
151
152typedef struct MYSQL_ROWS {
153 struct MYSQL_ROWS *next; /* list of rows */
155 unsigned long length;
157
158typedef MYSQL_ROWS *MYSQL_ROW_OFFSET; /* offset to current row */
159
160struct MEM_ROOT;
161
162typedef struct MYSQL_DATA {
165 uint64_t rows;
166 unsigned int fields;
168
217
218/**
219 @todo remove the "extension", move st_mysql_options completely
220 out of mysql.h
221*/
223
226 unsigned int port, protocol;
227 unsigned long client_flag;
231 char *ssl_key; /* PEM key file */
232 char *ssl_cert; /* PEM cert file */
233 char *ssl_ca; /* PEM CA file */
234 char *ssl_capath; /* PEM directory of CA-s? */
235 char *ssl_cipher; /* cipher to use */
237 unsigned long max_allowed_packet;
239 /**
240 The local address to bind when connecting to remote server.
241 */
243 /* 0 - never report, 1 - always report (default) */
245
246 /* function pointers for local infile support */
247 int (*local_infile_init)(void **, const char *, void *);
248 int (*local_infile_read)(void *, char *, unsigned int);
249 void (*local_infile_end)(void *);
250 int (*local_infile_error)(void *, char *, unsigned int);
253};
254
261
269
277
283
284typedef struct character_set {
285 unsigned int number; /* character set number */
286 unsigned int state; /* character set state */
287 const char *csname; /* character set name */
288 const char *name; /* collation name */
289 const char *comment; /* comment */
290 const char *dir; /* character set directory */
291 unsigned int mbminlen; /* min. length for multibyte strings */
292 unsigned int mbmaxlen; /* max. length for multibyte strings */
294
295struct MYSQL_METHODS;
296struct MYSQL_STMT;
297
298typedef struct MYSQL {
299 NET net; /* Communication parameters */
300 unsigned char *connector_fd; /* ConnectorFd for SSL */
302 char *info, *db;
307 uint64_t insert_id; /* id if insert on table with NEXTNR */
308 uint64_t extra_info; /* Not used */
309 unsigned long thread_id; /* Id for connection in server */
310 unsigned long packet_length;
311 unsigned int port;
313 unsigned int protocol_version;
314 unsigned int field_count;
315 unsigned int server_status;
316 unsigned int server_language;
317 unsigned int warning_count;
321 bool free_me; /* If free in mysql_close */
322 bool reconnect; /* set to 1 if automatic reconnect */
323
324 /* session-wide random string */
326
327 LIST *stmts; /* list of all statements */
328 const struct MYSQL_METHODS *methods;
329 void *thd;
330 /*
331 Points to boolean flag in MYSQL_RES or MYSQL_STMT. We set this flag
332 from mysql_stmt_close if close had to cancel result set of this object.
333 */
337
338typedef struct MYSQL_RES {
339 uint64_t row_count;
343 unsigned long *lengths; /* column lengths of current row */
344 MYSQL *handle; /* for unbuffered reads */
345 const struct MYSQL_METHODS *methods;
346 MYSQL_ROW row; /* If unbuffered read */
347 MYSQL_ROW current_row; /* buffer to current row */
350 bool eof; /* Used by mysql_fetch_row */
351 /* mysql_stmt_close() had to cancel this result */
356
357/**
358 Flag to indicate that COM_BINLOG_DUMP_GTID should
359 be used rather than COM_BINLOG_DUMP in the @sa mysql_binlog_open().
360*/
361#define MYSQL_RPL_GTID (1 << 16)
362/**
363 Skip HEARBEAT events in the @sa mysql_binlog_fetch().
364*/
365#define MYSQL_RPL_SKIP_HEARTBEAT (1 << 17)
366
367/**
368 Flag to indicate that the heartbeat_event being generated
369 is using the class Heartbeat_event_v2
370*/
371#define USE_HEARTBEAT_EVENT_V2 (1 << 1)
372
373/**
374 Struct for information about a replication stream.
375
376 @sa mysql_binlog_open()
377 @sa mysql_binlog_fetch()
378 @sa mysql_binlog_close()
379*/
380typedef struct MYSQL_RPL {
381 size_t file_name_length; /** Length of the 'file_name' or 0 */
382 const char *file_name; /** Filename of the binary log to read */
383 uint64_t start_position; /** Position in the binary log to */
384 /* start reading from */
385 unsigned int server_id; /** Server ID to use when identifying */
386 /* with the master */
387 unsigned int flags; /** Flags, e.g. MYSQL_RPL_GTID */
388
389 /** Size of gtid set data */
391 /** Callback function which is called */
392 /* from @sa mysql_binlog_open() to */
393 /* fill command packet gtid set */
394 void (*fix_gtid_set)(struct MYSQL_RPL *rpl, unsigned char *packet_gtid_set);
395 void *gtid_set_arg; /** GTID set data or an argument for */
396 /* fix_gtid_set() callback function */
397
398 unsigned long size; /** Size of the packet returned by */
399 /* mysql_binlog_fetch() */
400 const unsigned char *buffer; /** Pointer to returned data */
402
403/*
404 Set up and bring down the server; to ensure that applications will
405 work when linked against either the standard client library or the
406 embedded server library, these functions should be called.
407*/
408int STDCALL mysql_server_init(int argc, char **argv, char **groups);
409void STDCALL mysql_server_end(void);
410
411/*
412 mysql_server_init/end need to be called when using libmysqld or
413 libmysqlclient (exactly, mysql_server_init() is called by mysql_init() so
414 you don't need to call it explicitly; but you need to call
415 mysql_server_end() to free memory). The names are a bit misleading
416 (mysql_SERVER* to be used when using libmysqlCLIENT). So we add more general
417 names which suit well whether you're using libmysqld or libmysqlclient. We
418 intend to promote these aliases over the mysql_server* ones.
419*/
420#define mysql_library_init mysql_server_init
421#define mysql_library_end mysql_server_end
422
423/*
424 Set up and bring down a thread; these function should be called
425 for each thread in an application which opens at least one MySQL
426 connection. All uses of the connection(s) should be between these
427 function calls.
428*/
429bool STDCALL mysql_thread_init(void);
430void STDCALL mysql_thread_end(void);
431
432/*
433 Functions to get information from the MYSQL and MYSQL_RES structures
434 Should definitely be used if one uses shared libraries.
435*/
436
437uint64_t STDCALL mysql_num_rows(MYSQL_RES *res);
438unsigned int STDCALL mysql_num_fields(MYSQL_RES *res);
439bool STDCALL mysql_eof(MYSQL_RES *res);
441 unsigned int fieldnr);
446
447unsigned int STDCALL mysql_field_count(MYSQL *mysql);
450unsigned int STDCALL mysql_errno(MYSQL *mysql);
451const char *STDCALL mysql_error(MYSQL *mysql);
452const char *STDCALL mysql_sqlstate(MYSQL *mysql);
454const char *STDCALL mysql_info(MYSQL *mysql);
455unsigned long STDCALL mysql_thread_id(MYSQL *mysql);
457int STDCALL mysql_set_character_set(MYSQL *mysql, const char *csname);
458
460bool STDCALL mysql_ssl_set(MYSQL *mysql, const char *key, const char *cert,
461 const char *ca, const char *capath,
462 const char *cipher);
465void *STDCALL mysql_get_ssl_session_data(MYSQL *mysql, unsigned int n_ticket,
466 unsigned int *out_len);
468bool STDCALL mysql_change_user(MYSQL *mysql, const char *user,
469 const char *passwd, const char *db);
471 const char *user, const char *passwd,
472 const char *db, unsigned int port,
473 const char *unix_socket,
474 unsigned long clientflag);
475int STDCALL mysql_select_db(MYSQL *mysql, const char *db);
476int STDCALL mysql_query(MYSQL *mysql, const char *q);
477int STDCALL mysql_send_query(MYSQL *mysql, const char *q, unsigned long length);
478int STDCALL mysql_real_query(MYSQL *mysql, const char *q, unsigned long length);
481
483 MYSQL *mysql, const char *host, const char *user, const char *passwd,
484 const char *db, unsigned int port, const char *unix_socket,
485 unsigned long clientflag);
487 MYSQL *mysql, const char *query, unsigned long length);
489 MYSQL *mysql, const char *query, unsigned long length);
494 const char *db,
495 bool *error);
498
501 const char **data, size_t *length);
504 const char **data, size_t *length);
505/* local infile support */
506
507#define LOCAL_INFILE_ERROR_LEN 512
508
510 MYSQL *mysql, int (*local_infile_init)(void **, const char *, void *),
511 int (*local_infile_read)(void *, char *, unsigned int),
512 void (*local_infile_end)(void *),
513 int (*local_infile_error)(void *, char *, unsigned int), void *);
514
517 enum mysql_enum_shutdown_level shutdown_level);
519int STDCALL mysql_refresh(MYSQL *mysql, unsigned int refresh_options);
520int STDCALL mysql_kill(MYSQL *mysql, unsigned long pid);
522 enum enum_mysql_set_option option);
524const char *STDCALL mysql_stat(MYSQL *mysql);
526const char *STDCALL mysql_get_client_info(void);
527unsigned long STDCALL mysql_get_client_version(void);
531MYSQL_RES *STDCALL mysql_list_dbs(MYSQL *mysql, const char *wild);
532MYSQL_RES *STDCALL mysql_list_tables(MYSQL *mysql, const char *wild);
535 const void *arg);
537 const void *arg1, const void *arg2);
539 const void *arg);
542void STDCALL mysql_data_seek(MYSQL_RES *result, uint64_t offset);
544 MYSQL_ROW_OFFSET offset);
546 MYSQL_FIELD_OFFSET offset);
549 MYSQL_ROW *row);
550
553MYSQL_RES *STDCALL mysql_list_fields(MYSQL *mysql, const char *table,
554 const char *wild);
555unsigned long STDCALL mysql_escape_string(char *to, const char *from,
556 unsigned long from_length);
557unsigned long STDCALL mysql_hex_string(char *to, const char *from,
558 unsigned long from_length);
560 const char *from,
561 unsigned long length);
563 const char *from,
564 unsigned long length,
565 char quote);
566void STDCALL mysql_debug(const char *debug);
568unsigned int STDCALL mysql_thread_safe(void);
571
575
576/*
577 The following definitions are added for the enhanced
578 client-server protocol
579*/
580
581/* statement state */
588
589/*
590 This structure is used to define bind information, and
591 internally by the client library.
592 Public members with their descriptions are listed below
593 (conventionally `On input' refers to the binds given to
594 mysql_stmt_bind_param, `On output' refers to the binds given
595 to mysql_stmt_bind_result):
596
597 buffer_type - One of the MYSQL_* types, used to describe
598 the host language type of buffer.
599 On output: if column type is different from
600 buffer_type, column value is automatically converted
601 to buffer_type before it is stored in the buffer.
602 buffer - On input: points to the buffer with input data.
603 On output: points to the buffer capable to store
604 output data.
605 The type of memory pointed by buffer must correspond
606 to buffer_type. See the correspondence table in
607 the comment to mysql_stmt_bind_param.
608
609 The two above members are mandatory for any kind of bind.
610
611 buffer_length - the length of the buffer. You don't have to set
612 it for any fixed length buffer: float, double,
613 int, etc. It must be set however for variable-length
614 types, such as BLOBs or STRINGs.
615
616 length - On input: in case when lengths of input values
617 are different for each execute, you can set this to
618 point at a variable containing value length. This
619 way the value length can be different in each execute.
620 If length is not NULL, buffer_length is not used.
621 Note, length can even point at buffer_length if
622 you keep bind structures around while fetching:
623 this way you can change buffer_length before
624 each execution, everything will work ok.
625 On output: if length is set, mysql_stmt_fetch will
626 write column length into it.
627
628 is_null - On input: points to a boolean variable that should
629 be set to TRUE for NULL values.
630 This member is useful only if your data may be
631 NULL in some but not all cases.
632 If your data is never NULL, is_null should be set to 0.
633 If your data is always NULL, set buffer_type
634 to MYSQL_TYPE_NULL, and is_null will not be used.
635
636 is_unsigned - On input: used to signify that values provided for one
637 of numeric types are unsigned.
638 On output describes signedness of the output buffer.
639 If, taking into account is_unsigned flag, column data
640 is out of range of the output buffer, data for this column
641 is regarded truncated. Note that this has no correspondence
642 to the sign of result set column, if you need to find it out
643 use mysql_stmt_result_metadata.
644 error - where to write a truncation error if it is present.
645 possible error value is:
646 0 no truncation
647 1 value is out of range or buffer is too small
648
649 Please note that MYSQL_BIND also has internals members.
650*/
651
652typedef struct MYSQL_BIND {
653 unsigned long *length; /* output length pointer */
654 bool *is_null; /* Pointer to null indicator */
655 void *buffer; /* buffer to get/put data */
656 /* set this if you want to track data truncations happened during fetch */
657 bool *error;
658 unsigned char *row_ptr; /* for the current data position */
659 void (*store_param_func)(NET *net, struct MYSQL_BIND *param);
660 void (*fetch_result)(struct MYSQL_BIND *, MYSQL_FIELD *, unsigned char **row);
661 void (*skip_result)(struct MYSQL_BIND *, MYSQL_FIELD *, unsigned char **row);
662 /* output buffer length, must be set when fetching str/binary */
663 unsigned long buffer_length;
664 unsigned long offset; /* offset position for char/binary fetch */
665 unsigned long length_value; /* Used if length is 0 */
666 unsigned int param_number; /* For null count and error messages */
667 unsigned int pack_length; /* Internal length for packed data */
668 enum enum_field_types buffer_type; /* buffer type */
669 bool error_value; /* used if error is 0 */
670 bool is_unsigned; /* set if integer type is unsigned */
671 bool long_data_used; /* If used with mysql_send_long_data */
672 bool is_null_value; /* Used if is_null is 0 */
675
676struct MYSQL_STMT_EXT;
677
678/* statement handler */
679typedef struct MYSQL_STMT {
680 struct MEM_ROOT *mem_root; /* root allocations */
681 LIST list; /* list to keep track of all stmts */
682 MYSQL *mysql; /* connection handle */
683 MYSQL_BIND *params; /* input parameters */
684 MYSQL_BIND *bind; /* output parameters */
685 MYSQL_FIELD *fields; /* result set metadata */
686 MYSQL_DATA result; /* cached result set */
687 MYSQL_ROWS *data_cursor; /* current row in cached result */
688 /*
689 mysql_stmt_fetch() calls this function to fetch one row (it's different
690 for buffered, unbuffered and cursor fetch).
691 */
692 int (*read_row_func)(struct MYSQL_STMT *stmt, unsigned char **row);
693 /* copy of mysql->affected_rows after statement execution */
695 uint64_t insert_id; /* copy of mysql->insert_id */
696 unsigned long stmt_id; /* Id for prepared statement */
697 unsigned long flags; /* i.e. type of cursor to open */
698 unsigned long prefetch_rows; /* number of rows per one COM_FETCH */
699 /*
700 Copied from mysql->server_status after execute/fetch to know
701 server-side cursor status for this statement.
702 */
703 unsigned int server_status;
704 unsigned int last_errno; /* error code */
705 unsigned int param_count; /* input parameter count */
706 unsigned int field_count; /* number of columns in result set */
707 enum enum_mysql_stmt_state state; /* statement state */
708 char last_error[MYSQL_ERRMSG_SIZE]; /* error message */
710 /* Types of input parameters should be sent to server */
712 bool bind_param_done; /* input buffers were supplied */
713 unsigned char bind_result_done; /* output buffers were supplied */
714 /* mysql_stmt_close() had to cancel this result */
716 /*
717 Is set to true if we need to calculate field->max_length for
718 metadata fields when doing mysql_stmt_store_result.
719 */
723
725 /*
726 When doing mysql_stmt_store_result calculate max_length attribute
727 of statement metadata. This is to be consistent with the old API,
728 where this was done automatically.
729 In the new API we do that only by request because it slows down
730 mysql_stmt_store_result sufficiently.
731 */
733 /*
734 unsigned long with combination of cursor flags (read only, for update,
735 etc)
736 */
738 /*
739 Amount of rows to retrieve from server per one fetch if using cursors.
740 Accepts unsigned long attribute in the range 1 - ulong_max
741 */
744
745bool STDCALL mysql_bind_param(MYSQL *mysql, unsigned n_params,
746 MYSQL_BIND *binds, const char **names);
747
750 unsigned long length);
754 unsigned int column, unsigned long offset);
756unsigned long STDCALL mysql_stmt_param_count(MYSQL_STMT *stmt);
758 enum enum_stmt_attr_type attr_type,
759 const void *attr);
761 enum enum_stmt_attr_type attr_type,
762 void *attr);
769 unsigned int param_number,
770 const char *data, unsigned long length);
773unsigned int STDCALL mysql_stmt_errno(MYSQL_STMT *stmt);
774const char *STDCALL mysql_stmt_error(MYSQL_STMT *stmt);
775const char *STDCALL mysql_stmt_sqlstate(MYSQL_STMT *stmt);
777 MYSQL_ROW_OFFSET offset);
779void STDCALL mysql_stmt_data_seek(MYSQL_STMT *stmt, uint64_t offset);
783unsigned int STDCALL mysql_stmt_field_count(MYSQL_STMT *stmt);
784
787bool STDCALL mysql_autocommit(MYSQL *mysql, bool auto_mode);
792
793/* Public key reset */
795
796/* status return codes */
797#define MYSQL_NO_DATA 100
798#define MYSQL_DATA_TRUNCATED 101
799
800#define mysql_reload(mysql) mysql_refresh((mysql), REFRESH_GRANT)
801
802#define HAVE_MYSQL_REAL_CONNECT
803
805 const char *dns_srv_name,
806 const char *user, const char *passwd,
807 const char *db,
808 unsigned long client_flag);
809
810#ifdef __cplusplus
811}
812#endif
813
814#endif /* _mysql_h */
MySQL Client Plugin API.
Error messages for MySQL clients.
This file contains the field type.
enum_field_types
Column types for MySQL.
Definition: field_types.h:52
mysql_enum_shutdown_level
We want levels to be in growing order of hardness (because we use number comparisons).
Definition: mysql_com.h:1003
static char * query
Definition: myisam_ftdump.cc:44
static char * dns_srv_name
Definition: mysql.cc:183
static MYSQL mysql
Definition: mysql.cc:153
int STDCALL mysql_refresh(MYSQL *mysql, unsigned int refresh_options)
Definition: libmysql.cc:808
unsigned int STDCALL mysql_stmt_field_count(MYSQL_STMT *stmt)
Definition: libmysql.cc:2239
bool STDCALL mysql_stmt_close(MYSQL_STMT *stmt)
Definition: libmysql.cc:4169
const char *STDCALL mysql_get_client_info(void)
Definition: libmysql.cc:886
const char *STDCALL mysql_sqlstate(MYSQL *mysql)
Definition: client.cc:9385
void STDCALL mysql_data_seek(MYSQL_RES *result, uint64_t offset)
Definition: libmysql.cc:662
bool STDCALL mysql_stmt_attr_get(MYSQL_STMT *stmt, enum enum_stmt_attr_type attr_type, void *attr)
Definition: libmysql.cc:2068
MYSQL_RES *STDCALL mysql_use_result(MYSQL *mysql)
Definition: client.cc:9355
int STDCALL mysql_binlog_open(MYSQL *mysql, MYSQL_RPL *rpl)
Open a new replication stream.
Definition: client.cc:7200
unsigned int STDCALL mysql_thread_safe(void)
Definition: libmysql.cc:941
unsigned int STDCALL mysql_errno(MYSQL *mysql)
Definition: client.cc:9062
uint64_t STDCALL mysql_num_rows(MYSQL_RES *res)
Definition: client.cc:9056
int STDCALL mysql_send_query(MYSQL *mysql, const char *q, unsigned long length)
int STDCALL mysql_reset_connection(MYSQL *mysql)
Definition: client.cc:9262
void STDCALL mysql_reset_server_public_key(void)
Definition: client_authentication.cc:1037
bool STDCALL mysql_more_results(MYSQL *mysql)
Definition: client.cc:9321
unsigned long STDCALL mysql_hex_string(char *to, const char *from, unsigned long from_length)
bool STDCALL mysql_stmt_bind_param(MYSQL_STMT *stmt, MYSQL_BIND *bnd)
Definition: libmysql.cc:2432
const char *STDCALL mysql_info(MYSQL *mysql)
Definition: client.cc:9251
int STDCALL mysql_real_query(MYSQL *mysql, const char *q, unsigned long length)
bool STDCALL mysql_rollback(MYSQL *mysql)
Definition: client.cc:9295
mysql_option
Definition: mysql.h:169
@ MYSQL_OPT_CONNECT_TIMEOUT
Definition: mysql.h:170
@ MYSQL_OPT_COMPRESS
Definition: mysql.h:171
@ MYSQL_OPT_LOAD_DATA_LOCAL_DIR
Definition: mysql.h:213
@ MYSQL_SET_CHARSET_DIR
Definition: mysql.h:176
@ MYSQL_OPT_PROTOCOL
Definition: mysql.h:179
@ MYSQL_OPT_CONNECT_ATTR_DELETE
Definition: mysql.h:198
@ MYSQL_OPT_SSL_CIPHER
Definition: mysql.h:193
@ MYSQL_OPT_LOCAL_INFILE
Definition: mysql.h:178
@ MYSQL_SET_CHARSET_NAME
Definition: mysql.h:177
@ MYSQL_OPT_NET_BUFFER_LENGTH
Definition: mysql.h:203
@ MYSQL_OPT_MAX_ALLOWED_PACKET
Definition: mysql.h:202
@ MYSQL_SHARED_MEMORY_BASE_NAME
Definition: mysql.h:180
@ MYSQL_SERVER_PUBLIC_KEY
Definition: mysql.h:199
@ MYSQL_OPT_SSL_CA
Definition: mysql.h:191
@ MYSQL_OPT_READ_TIMEOUT
Definition: mysql.h:181
@ MYSQL_OPT_BIND
Definition: mysql.h:188
@ MYSQL_OPT_TLS_VERSION
Definition: mysql.h:204
@ MYSQL_OPT_WRITE_TIMEOUT
Definition: mysql.h:182
@ MYSQL_OPT_SSL_KEY
Definition: mysql.h:189
@ MYSQL_OPT_CAN_HANDLE_EXPIRED_PASSWORDS
Definition: mysql.h:201
@ MYSQL_OPT_CONNECT_ATTR_ADD
Definition: mysql.h:197
@ MYSQL_OPT_SSL_FIPS_MODE
Definition: mysql.h:209
@ MYSQL_OPT_ZSTD_COMPRESSION_LEVEL
Definition: mysql.h:212
@ MYSQL_READ_DEFAULT_GROUP
Definition: mysql.h:175
@ MYSQL_OPT_CONNECT_ATTR_RESET
Definition: mysql.h:196
@ MYSQL_OPT_SSL_CRLPATH
Definition: mysql.h:195
@ MYSQL_OPT_GET_SERVER_PUBLIC_KEY
Definition: mysql.h:206
@ MYSQL_OPT_SSL_CERT
Definition: mysql.h:190
@ MYSQL_READ_DEFAULT_FILE
Definition: mysql.h:174
@ MYSQL_OPT_SSL_SESSION_DATA
Definition: mysql.h:215
@ MYSQL_OPT_SSL_MODE
Definition: mysql.h:205
@ MYSQL_OPT_SSL_CAPATH
Definition: mysql.h:192
@ MYSQL_DEFAULT_AUTH
Definition: mysql.h:187
@ MYSQL_PLUGIN_DIR
Definition: mysql.h:186
@ MYSQL_OPT_USER_PASSWORD
Definition: mysql.h:214
@ MYSQL_OPT_USE_RESULT
Definition: mysql.h:183
@ MYSQL_OPT_RETRY_COUNT
Definition: mysql.h:207
@ MYSQL_REPORT_DATA_TRUNCATION
Definition: mysql.h:184
@ MYSQL_OPT_COMPRESSION_ALGORITHMS
Definition: mysql.h:211
@ MYSQL_OPT_SSL_CRL
Definition: mysql.h:194
@ MYSQL_OPT_OPTIONAL_RESULTSET_METADATA
Definition: mysql.h:208
@ MYSQL_ENABLE_CLEARTEXT_PLUGIN
Definition: mysql.h:200
@ MYSQL_OPT_NAMED_PIPE
Definition: mysql.h:172
@ MYSQL_INIT_COMMAND
Definition: mysql.h:173
@ MYSQL_OPT_TLS_CIPHERSUITES
Definition: mysql.h:210
@ MYSQL_OPT_RECONNECT
Definition: mysql.h:185
uint64_t STDCALL mysql_stmt_insert_id(MYSQL_STMT *stmt)
Definition: libmysql.cc:2259
MYSQL_FIELD *STDCALL mysql_fetch_fields(MYSQL_RES *res)
Definition: client.cc:9377
enum net_async_status STDCALL mysql_real_connect_nonblocking(MYSQL *mysql, const char *host, const char *user, const char *passwd, const char *db, unsigned int port, const char *unix_socket, unsigned long clientflag)
unsigned int STDCALL mysql_field_count(MYSQL *mysql)
Definition: client.cc:9381
MYSQL_ROW STDCALL mysql_fetch_row(MYSQL_RES *result)
Definition: client.cc:8301
const char *STDCALL mysql_get_host_info(MYSQL *mysql)
Definition: libmysql.cc:878
MYSQL_RES *STDCALL mysql_stmt_result_metadata(MYSQL_STMT *stmt)
Definition: libmysql.cc:1630
uint64_t STDCALL mysql_affected_rows(MYSQL *mysql)
Definition: client.cc:9359
enum_mysql_stmt_state
Definition: mysql.h:582
@ MYSQL_STMT_PREPARE_DONE
Definition: mysql.h:584
@ MYSQL_STMT_INIT_DONE
Definition: mysql.h:583
@ MYSQL_STMT_FETCH_DONE
Definition: mysql.h:586
@ MYSQL_STMT_EXECUTE_DONE
Definition: mysql.h:585
bool STDCALL mysql_eof(MYSQL_RES *res)
Definition: libmysql.cc:890
unsigned long STDCALL mysql_thread_id(MYSQL *mysql)
Definition: libmysql.cc:911
int STDCALL mysql_kill(MYSQL *mysql, unsigned long pid)
#define STDCALL
Definition: mysql.h:72
void mysql_set_local_infile_handler(MYSQL *mysql, int(*local_infile_init)(void **, const char *, void *), int(*local_infile_read)(void *, char *, unsigned int), void(*local_infile_end)(void *), int(*local_infile_error)(void *, char *, unsigned int), void *)
Definition: libmysql.cc:630
MYSQL_FIELD *STDCALL mysql_fetch_field(MYSQL_RES *result)
Definition: client.cc:9371
MYSQL_ROW_OFFSET STDCALL mysql_stmt_row_tell(MYSQL_STMT *stmt)
Definition: libmysql.cc:4047
int STDCALL mysql_options4(MYSQL *mysql, enum mysql_option option, const void *arg1, const void *arg2)
Definition: client.cc:8959
enum net_async_status STDCALL mysql_send_query_nonblocking(MYSQL *mysql, const char *query, unsigned long length)
int STDCALL mysql_set_character_set(MYSQL *mysql, const char *csname)
Definition: client.cc:9189
bool STDCALL mysql_stmt_free_result(MYSQL_STMT *stmt)
Definition: libmysql.cc:4145
bool STDCALL mysql_stmt_attr_set(MYSQL_STMT *stmt, enum enum_stmt_attr_type attr_type, const void *attr)
Definition: libmysql.cc:2038
bool STDCALL mysql_stmt_send_long_data(MYSQL_STMT *stmt, unsigned int param_number, const char *data, unsigned long length)
void *STDCALL mysql_get_ssl_session_data(MYSQL *mysql, unsigned int n_ticket, unsigned int *out_len)
Get the current SSL session serialization.
Definition: client.cc:3509
bool STDCALL mysql_free_ssl_session_data(MYSQL *mysql, void *data)
Free a saved SSL session serialization.
Definition: client.cc:3595
int STDCALL mysql_next_result(MYSQL *mysql)
Definition: client.cc:9333
int STDCALL mysql_select_db(MYSQL *mysql, const char *db)
Definition: client.cc:7384
int STDCALL mysql_stmt_fetch(MYSQL_STMT *stmt)
Definition: libmysql.cc:3741
bool STDCALL mysql_change_user(MYSQL *mysql, const char *user, const char *passwd, const char *db)
Definition: libmysql.cc:266
bool STDCALL mysql_bind_param(MYSQL *mysql, unsigned n_params, MYSQL_BIND *binds, const char **names)
Definition: libmysql.cc:2465
unsigned long STDCALL mysql_get_server_version(MYSQL *mysql)
Definition: client.cc:9166
int STDCALL mysql_stmt_fetch_column(MYSQL_STMT *stmt, MYSQL_BIND *bind_arg, unsigned int column, unsigned long offset)
struct MYSQL_DATA MYSQL_DATA
unsigned long STDCALL mysql_stmt_param_count(MYSQL_STMT *stmt)
Definition: libmysql.cc:2221
int STDCALL mysql_shutdown(MYSQL *mysql, enum mysql_enum_shutdown_level shutdown_level)
Definition: libmysql.cc:799
unsigned int STDCALL mysql_warning_count(MYSQL *mysql)
Definition: libmysql.cc:909
enum_stmt_attr_type
Definition: mysql.h:724
@ STMT_ATTR_PREFETCH_ROWS
Definition: mysql.h:742
@ STMT_ATTR_UPDATE_MAX_LENGTH
Definition: mysql.h:732
@ STMT_ATTR_CURSOR_TYPE
Definition: mysql.h:737
int STDCALL mysql_stmt_next_result(MYSQL_STMT *stmt)
Definition: libmysql.cc:4298
enum net_async_status STDCALL mysql_real_query_nonblocking(MYSQL *mysql, const char *query, unsigned long length)
const char *STDCALL mysql_character_set_name(MYSQL *mysql)
Definition: libmysql.cc:921
void STDCALL myodbc_remove_escape(MYSQL *mysql, char *name)
Definition: libmysql.cc:1086
MYSQL *STDCALL mysql_real_connect_dns_srv(MYSQL *mysql, const char *dns_srv_name, const char *user, const char *passwd, const char *db, unsigned long client_flag)
Connect to a server using a DNS SRV name.
Definition: dns_srv.cc:161
MYSQL_RES *STDCALL mysql_store_result(MYSQL *mysql)
Definition: client.cc:8068
int STDCALL mysql_server_init(int argc, char **argv, char **groups)
Definition: libmysql.cc:128
enum net_async_status STDCALL mysql_select_db_nonblocking(MYSQL *mysql, const char *db, bool *error)
bool STDCALL mysql_stmt_reset(MYSQL_STMT *stmt)
Definition: libmysql.cc:4224
unsigned long *STDCALL mysql_fetch_lengths(MYSQL_RES *result)
Definition: client.cc:8394
enum net_async_status STDCALL mysql_next_result_nonblocking(MYSQL *mysql)
Definition: libmysql.cc:4278
bool STDCALL mysql_read_query_result(MYSQL *mysql)
Definition: libmysql.cc:4333
unsigned int mysql_port
Definition: client.cc:211
struct MYSQL_FIELD MYSQL_FIELD
MYSQL_FIELD_OFFSET STDCALL mysql_field_tell(MYSQL_RES *res)
Definition: libmysql.cc:901
struct MYSQL_STMT MYSQL_STMT
MYSQL_RES *STDCALL mysql_stmt_param_metadata(MYSQL_STMT *stmt)
Definition: libmysql.cc:1672
MYSQL_FIELD_OFFSET STDCALL mysql_field_seek(MYSQL_RES *result, MYSQL_FIELD_OFFSET offset)
Definition: libmysql.cc:686
int STDCALL mysql_get_option(MYSQL *mysql, enum mysql_option option, const void *arg)
Return the current values for the options settable through mysql_options()
Definition: client.cc:8768
int STDCALL mysql_stmt_store_result(MYSQL_STMT *stmt)
Definition: libmysql.cc:3937
bool STDCALL mysql_get_ssl_session_reused(MYSQL *mysql)
Check if the current ssl session is reused.
Definition: client.cc:3614
int STDCALL mysql_set_server_option(MYSQL *mysql, enum enum_mysql_set_option option)
Definition: libmysql.cc:831
mysql_status
Definition: mysql.h:255
@ MYSQL_STATUS_USE_RESULT
Definition: mysql.h:258
@ MYSQL_STATUS_STATEMENT_GET_RESULT
Definition: mysql.h:259
@ MYSQL_STATUS_GET_RESULT
Definition: mysql.h:257
@ MYSQL_STATUS_READY
Definition: mysql.h:256
MYSQL_STMT *STDCALL mysql_stmt_init(MYSQL *mysql)
Definition: libmysql.cc:1340
int STDCALL mysql_stmt_prepare(MYSQL_STMT *stmt, const char *query, unsigned long length)
uint64_t STDCALL mysql_stmt_affected_rows(MYSQL_STMT *stmt)
Definition: libmysql.cc:2230
uint64_t STDCALL mysql_insert_id(MYSQL *mysql)
Definition: libmysql.cc:907
const char *STDCALL mysql_stat(MYSQL *mysql)
Definition: libmysql.cc:858
struct MYSQL_RES MYSQL_RES
unsigned int STDCALL mysql_get_proto_info(MYSQL *mysql)
Definition: libmysql.cc:882
void STDCALL mysql_stmt_data_seek(MYSQL_STMT *stmt, uint64_t offset)
Definition: libmysql.cc:4057
MYSQL_ROWS * MYSQL_ROW_OFFSET
Definition: mysql.h:158
bool STDCALL mysql_ssl_set(MYSQL *mysql, const char *key, const char *cert, const char *ca, const char *capath, const char *cipher)
Definition: client.cc:3410
int STDCALL mysql_session_track_get_next(MYSQL *mysql, enum enum_session_state_type type, const char **data, size_t *length)
Get the subsequent state change information received from the server.
Definition: client.cc:9130
int STDCALL mysql_binlog_fetch(MYSQL *mysql, MYSQL_RPL *rpl)
Fetch one event from the server.
Definition: client.cc:7327
MYSQL_RES *STDCALL mysql_list_tables(MYSQL *mysql, const char *wild)
Definition: libmysql.cc:711
enum net_async_status STDCALL mysql_store_result_nonblocking(MYSQL *mysql, MYSQL_RES **result)
This API reads all result set sent by server in an asynchronous way.
Definition: client.cc:8127
MYSQL *STDCALL mysql_init(MYSQL *mysql)
Definition: client.cc:3257
const char *STDCALL mysql_get_server_info(MYSQL *mysql)
Definition: libmysql.cc:874
int STDCALL mysql_stmt_execute(MYSQL_STMT *stmt)
Definition: libmysql.cc:2194
MYSQL_ROW_OFFSET STDCALL mysql_row_tell(MYSQL_RES *res)
Definition: libmysql.cc:897
void STDCALL mysql_get_character_set_info(MYSQL *mysql, MY_CHARSET_INFO *charset)
Definition: libmysql.cc:925
enum net_async_status STDCALL mysql_free_result_nonblocking(MYSQL_RES *result)
Frees the memory allocated for a result, set by APIs which would have returned rows.
Definition: client.cc:1917
unsigned long STDCALL mysql_escape_string(char *to, const char *from, unsigned long from_length)
void STDCALL mysql_server_end(void)
Definition: libmysql.cc:193
MYSQL_RES *STDCALL mysql_list_processes(MYSQL *mysql)
Definition: libmysql.cc:782
const char *STDCALL mysql_stmt_sqlstate(MYSQL_STMT *stmt)
Definition: libmysql.cc:4246
int STDCALL mysql_query(MYSQL *mysql, const char *q)
Definition: libmysql.cc:654
struct MYSQL_ROWS MYSQL_ROWS
MYSQL_ROW_OFFSET STDCALL mysql_row_seek(MYSQL_RES *result, MYSQL_ROW_OFFSET offset)
Definition: libmysql.cc:678
struct MYSQL MYSQL
bool STDCALL mysql_commit(MYSQL *mysql)
Definition: client.cc:9286
MYSQL_FIELD *STDCALL mysql_fetch_field_direct(MYSQL_RES *res, unsigned int fieldnr)
Definition: libmysql.cc:892
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, unsigned long clientflag)
mysql_protocol_type
Definition: mysql.h:262
@ MYSQL_PROTOCOL_TCP
Definition: mysql.h:264
@ MYSQL_PROTOCOL_DEFAULT
Definition: mysql.h:263
@ MYSQL_PROTOCOL_MEMORY
Definition: mysql.h:267
@ MYSQL_PROTOCOL_PIPE
Definition: mysql.h:266
@ MYSQL_PROTOCOL_SOCKET
Definition: mysql.h:265
unsigned long STDCALL mysql_get_client_version(void)
Definition: libmysql.cc:888
char * mysql_unix_port
Definition: client.cc:212
unsigned int STDCALL mysql_stmt_errno(MYSQL_STMT *stmt)
Definition: libmysql.cc:4241
const char *STDCALL mysql_get_ssl_cipher(MYSQL *mysql)
Definition: client.cc:3486
uint64_t STDCALL mysql_stmt_num_rows(MYSQL_STMT *stmt)
Definition: libmysql.cc:4076
unsigned long STDCALL mysql_real_escape_string_quote(MYSQL *mysql, char *to, const char *from, unsigned long length, char quote)
const char *STDCALL mysql_error(MYSQL *mysql)
Definition: client.cc:9066
struct character_set MY_CHARSET_INFO
bool STDCALL mysql_autocommit(MYSQL *mysql, bool auto_mode)
Definition: client.cc:9304
void STDCALL mysql_free_result(MYSQL_RES *result)
Definition: client.cc:1946
MYSQL_RES *STDCALL mysql_list_dbs(MYSQL *mysql, const char *wild)
Definition: libmysql.cc:697
MYSQL_RES *STDCALL mysql_list_fields(MYSQL *mysql, const char *table, const char *wild)
Definition: libmysql.cc:745
enum net_async_status STDCALL mysql_fetch_row_nonblocking(MYSQL_RES *res, MYSQL_ROW *row)
Reads next row of a result set in an asynchronous way.
Definition: client.cc:8319
int STDCALL mysql_options(MYSQL *mysql, enum mysql_option option, const void *arg)
Definition: client.cc:8440
void STDCALL mysql_debug(const char *debug)
Definition: libmysql.cc:238
bool STDCALL mysql_thread_init(void)
Definition: libmysql.cc:211
mysql_ssl_mode
Definition: mysql.h:270
@ SSL_MODE_REQUIRED
Definition: mysql.h:273
@ SSL_MODE_PREFERRED
Definition: mysql.h:272
@ SSL_MODE_VERIFY_CA
Definition: mysql.h:274
@ SSL_MODE_DISABLED
Definition: mysql.h:271
@ SSL_MODE_VERIFY_IDENTITY
Definition: mysql.h:275
unsigned long STDCALL mysql_real_escape_string(MYSQL *mysql, char *to, const char *from, unsigned long length)
bool STDCALL mysql_stmt_bind_result(MYSQL_STMT *stmt, MYSQL_BIND *bnd)
Definition: libmysql.cc:3600
const char *STDCALL mysql_stmt_error(MYSQL_STMT *stmt)
Definition: libmysql.cc:4255
void mysql_set_local_infile_default(MYSQL *mysql)
Definition: libmysql.cc:642
void STDCALL mysql_binlog_close(MYSQL *mysql, MYSQL_RPL *rpl)
Close replication stream.
Definition: client.cc:7369
MYSQL_ROW_OFFSET STDCALL mysql_stmt_row_seek(MYSQL_STMT *stmt, MYSQL_ROW_OFFSET offset)
Definition: libmysql.cc:4034
void STDCALL mysql_close(MYSQL *sock)
Definition: client.cc:7544
struct MYSQL_RPL MYSQL_RPL
Struct for information about a replication stream.
int my_socket
Definition: mysql.h:64
uint64_t my_ulonglong
Definition: mysql.h:53
int STDCALL mysql_dump_debug_info(MYSQL *mysql)
Definition: libmysql.cc:839
enum enum_resultset_metadata STDCALL mysql_result_metadata(MYSQL_RES *result)
Definition: client.cc:9363
int STDCALL mysql_session_track_get_first(MYSQL *mysql, enum enum_session_state_type type, const char **data, size_t *length)
Get the first state change information received from the server.
Definition: client.cc:9103
void STDCALL mysql_thread_end(void)
Definition: libmysql.cc:213
unsigned int MYSQL_FIELD_OFFSET
Definition: mysql.h:145
char ** MYSQL_ROW
Definition: mysql.h:144
int STDCALL mysql_ping(MYSQL *mysql)
Definition: libmysql.cc:865
unsigned int STDCALL mysql_num_fields(MYSQL_RES *res)
Definition: client.cc:9058
struct MYSQL_BIND MYSQL_BIND
mysql_ssl_fips_mode
Definition: mysql.h:278
@ SSL_FIPS_MODE_OFF
Definition: mysql.h:279
@ SSL_FIPS_MODE_STRICT
Definition: mysql.h:281
@ SSL_FIPS_MODE_ON
Definition: mysql.h:280
Common definition between mysql server & client.
enum_session_state_type
Type of state change information that the server can include in the Ok packet.
Definition: mysql_com.h:1068
#define MYSQL_ERRMSG_SIZE
Max length of a error message.
Definition: mysql_com.h:879
#define SCRAMBLE_LENGTH
Length of random string sent by server on handshake; this is also length of obfuscated password,...
Definition: mysql_com.h:127
enum_mysql_set_option
options for mysql_options()
Definition: mysql_com.h:1055
#define SQLSTATE_LENGTH
Definition: mysql_com.h:74
enum_resultset_metadata
Definition: mysql_com.h:1022
Log error(cerr, "ERROR")
Time declarations shared between the server and client API: you should not add anything to this heade...
char * user
Definition: mysqladmin.cc:59
const char * host
Definition: mysqladmin.cc:58
static MYSQL * sock
Definition: mysqlcheck.cc:55
const std::string charset("charset")
bool length(const dd::Spatial_reference_system *srs, const Geometry *g1, double *length, bool *null) noexcept
Computes the length of linestrings and multilinestrings.
Definition: length.cc:75
Definition: buffer.h:44
Definition: options.cc:48
net_async_status
Definition: plugin_auth_common.h:135
required string key
Definition: replication_asynchronous_connection_failover.proto:59
required uint64 port
Definition: replication_asynchronous_connection_failover.proto:32
required string type
Definition: replication_group_member_actions.proto:33
case opt name
Definition: sslopt-case.h:32
Definition: m_ctype.h:382
Definition: init_commands_array.h:25
Definition: my_list.h:35
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:82
Definition: mysql.h:652
unsigned long buffer_length
Definition: mysql.h:663
void * extension
Definition: mysql.h:673
unsigned int param_number
Definition: mysql.h:666
void(* store_param_func)(NET *net, struct MYSQL_BIND *param)
Definition: mysql.h:659
bool error_value
Definition: mysql.h:669
bool long_data_used
Definition: mysql.h:671
void * buffer
Definition: mysql.h:655
bool is_unsigned
Definition: mysql.h:670
void(* fetch_result)(struct MYSQL_BIND *, MYSQL_FIELD *, unsigned char **row)
Definition: mysql.h:660
unsigned long length_value
Definition: mysql.h:665
unsigned long * length
Definition: mysql.h:653
unsigned long offset
Definition: mysql.h:664
void(* skip_result)(struct MYSQL_BIND *, MYSQL_FIELD *, unsigned char **row)
Definition: mysql.h:661
bool * is_null
Definition: mysql.h:654
bool is_null_value
Definition: mysql.h:672
unsigned int pack_length
Definition: mysql.h:667
enum enum_field_types buffer_type
Definition: mysql.h:668
bool * error
Definition: mysql.h:657
unsigned char * row_ptr
Definition: mysql.h:658
Definition: mysql.h:162
MYSQL_ROWS * data
Definition: mysql.h:163
uint64_t rows
Definition: mysql.h:165
unsigned int fields
Definition: mysql.h:166
struct MEM_ROOT * alloc
Definition: mysql.h:164
Definition: mysql.h:120
unsigned int db_length
Definition: mysql.h:134
unsigned int name_length
Definition: mysql.h:130
unsigned int org_table_length
Definition: mysql.h:133
char * name
Definition: mysql.h:121
char * org_name
Definition: mysql.h:122
char * db
Definition: mysql.h:125
char * def
Definition: mysql.h:127
char * catalog
Definition: mysql.h:126
unsigned int charsetnr
Definition: mysql.h:139
unsigned int catalog_length
Definition: mysql.h:135
unsigned int org_name_length
Definition: mysql.h:131
unsigned int decimals
Definition: mysql.h:138
unsigned long max_length
Definition: mysql.h:129
unsigned int table_length
Definition: mysql.h:132
char * org_table
Definition: mysql.h:124
unsigned int def_length
Definition: mysql.h:136
void * extension
Definition: mysql.h:141
char * table
Definition: mysql.h:123
unsigned int flags
Definition: mysql.h:137
unsigned long length
Definition: mysql.h:128
enum enum_field_types type
Definition: mysql.h:140
Definition: sql_common.h:192
Definition: mysql.h:338
MYSQL_ROW current_row
Definition: mysql.h:347
struct MYSQL_DATA * data
Definition: mysql.h:341
unsigned int current_field
Definition: mysql.h:349
void * extension
Definition: mysql.h:354
enum enum_resultset_metadata metadata
Definition: mysql.h:353
MYSQL * handle
Definition: mysql.h:344
MYSQL_FIELD * fields
Definition: mysql.h:340
MYSQL_ROWS * data_cursor
Definition: mysql.h:342
bool eof
Definition: mysql.h:350
const struct MYSQL_METHODS * methods
Definition: mysql.h:345
MYSQL_ROW row
Definition: mysql.h:346
struct MEM_ROOT * field_alloc
Definition: mysql.h:348
uint64_t row_count
Definition: mysql.h:339
unsigned long * lengths
Definition: mysql.h:343
unsigned int field_count
Definition: mysql.h:349
bool unbuffered_fetch_cancelled
Definition: mysql.h:352
Definition: mysql.h:152
MYSQL_ROW data
Definition: mysql.h:154
struct MYSQL_ROWS * next
Definition: mysql.h:153
unsigned long length
Definition: mysql.h:155
Struct for information about a replication stream.
Definition: mysql.h:380
unsigned int server_id
Position in the binary log to
Definition: mysql.h:385
size_t file_name_length
Definition: mysql.h:381
unsigned long size
GTID set data or an argument for
Definition: mysql.h:398
uint64_t start_position
Filename of the binary log to read.
Definition: mysql.h:383
const unsigned char * buffer
Size of the packet returned by
Definition: mysql.h:400
void(* fix_gtid_set)(struct MYSQL_RPL *rpl, unsigned char *packet_gtid_set)
Callback function which is called
Definition: mysql.h:394
const char * file_name
Length of the 'file_name' or 0
Definition: mysql.h:382
size_t gtid_set_encoded_size
Flags, e.g.
Definition: mysql.h:390
void * gtid_set_arg
Definition: mysql.h:395
unsigned int flags
Server ID to use when identifying
Definition: mysql.h:387
Definition: libmysql.cc:106
Definition: mysql.h:679
bool bind_param_done
Definition: mysql.h:712
unsigned int last_errno
Definition: mysql.h:704
unsigned long flags
Definition: mysql.h:697
MYSQL * mysql
Definition: mysql.h:682
MYSQL_ROWS * data_cursor
Definition: mysql.h:687
unsigned int server_status
Definition: mysql.h:703
MYSQL_FIELD * fields
Definition: mysql.h:685
char last_error[MYSQL_ERRMSG_SIZE]
Definition: mysql.h:708
int(* read_row_func)(struct MYSQL_STMT *stmt, unsigned char **row)
Definition: mysql.h:692
enum enum_mysql_stmt_state state
Definition: mysql.h:707
bool send_types_to_server
Definition: mysql.h:711
unsigned char bind_result_done
Definition: mysql.h:713
MYSQL_BIND * bind
Definition: mysql.h:684
unsigned long prefetch_rows
Definition: mysql.h:698
uint64_t insert_id
Definition: mysql.h:695
MYSQL_DATA result
Definition: mysql.h:686
bool unbuffered_fetch_cancelled
Definition: mysql.h:715
unsigned int param_count
Definition: mysql.h:705
unsigned int field_count
Definition: mysql.h:706
unsigned long stmt_id
Definition: mysql.h:696
bool update_max_length
Definition: mysql.h:720
uint64_t affected_rows
Definition: mysql.h:694
LIST list
Definition: mysql.h:681
struct MYSQL_STMT_EXT * extension
Definition: mysql.h:721
char sqlstate[SQLSTATE_LENGTH+1]
Definition: mysql.h:709
MYSQL_BIND * params
Definition: mysql.h:683
struct MEM_ROOT * mem_root
Definition: mysql.h:680
Definition: mysql.h:298
unsigned int server_language
Definition: mysql.h:316
struct MEM_ROOT * field_alloc
Definition: mysql.h:305
bool free_me
Definition: mysql.h:321
unsigned int port
Definition: mysql.h:311
const struct MYSQL_METHODS * methods
Definition: mysql.h:328
unsigned long server_capabilities
Definition: mysql.h:312
struct CHARSET_INFO * charset
Definition: mysql.h:303
char * host_info
Definition: mysql.h:301
unsigned long packet_length
Definition: mysql.h:310
char * info
Definition: mysql.h:302
char * unix_socket
Definition: mysql.h:301
char * server_version
Definition: mysql.h:301
unsigned long client_flag
Definition: mysql.h:312
char * passwd
Definition: mysql.h:301
char * host
Definition: mysql.h:301
char * user
Definition: mysql.h:301
char scramble[SCRAMBLE_LENGTH+1]
Definition: mysql.h:325
void * thd
Definition: mysql.h:329
uint64_t affected_rows
Definition: mysql.h:306
MYSQL_FIELD * fields
Definition: mysql.h:304
unsigned int server_status
Definition: mysql.h:315
bool * unbuffered_fetch_owner
Definition: mysql.h:334
unsigned int warning_count
Definition: mysql.h:317
unsigned int protocol_version
Definition: mysql.h:313
char * db
Definition: mysql.h:302
NET net
Definition: mysql.h:299
bool reconnect
Definition: mysql.h:322
uint64_t insert_id
Definition: mysql.h:307
unsigned long thread_id
Definition: mysql.h:309
enum mysql_status status
Definition: mysql.h:319
LIST * stmts
Definition: mysql.h:327
uint64_t extra_info
Definition: mysql.h:308
void * extension
Definition: mysql.h:335
enum enum_resultset_metadata resultset_metadata
Definition: mysql.h:320
unsigned int field_count
Definition: mysql.h:314
unsigned char * connector_fd
Definition: mysql.h:300
Definition: mysql_com.h:912
Definition: mysql.h:284
const char * comment
Definition: mysql.h:289
const char * name
Definition: mysql.h:288
const char * csname
Definition: mysql.h:287
const char * dir
Definition: mysql.h:290
unsigned int number
Definition: mysql.h:285
unsigned int state
Definition: mysql.h:286
unsigned int mbminlen
Definition: mysql.h:291
unsigned int mbmaxlen
Definition: mysql.h:292
Definition: result.h:29
Definition: sql_common.h:167
Definition: mysql.h:224
unsigned int port
Definition: mysql.h:226
char * ssl_capath
Definition: mysql.h:234
char * my_cnf_group
Definition: mysql.h:230
int(* local_infile_init)(void **, const char *, void *)
Definition: mysql.h:247
char * ssl_ca
Definition: mysql.h:233
char * ssl_key
Definition: mysql.h:231
void(* local_infile_end)(void *)
Definition: mysql.h:249
char * ssl_cert
Definition: mysql.h:232
char * my_cnf_file
Definition: mysql.h:230
struct Init_commands_array * init_commands
Definition: mysql.h:229
void * local_infile_userdata
Definition: mysql.h:251
char * unix_socket
Definition: mysql.h:228
unsigned int read_timeout
Definition: mysql.h:225
unsigned long max_allowed_packet
Definition: mysql.h:237
char * password
Definition: mysql.h:228
int(* local_infile_error)(void *, char *, unsigned int)
Definition: mysql.h:250
char * ssl_cipher
Definition: mysql.h:235
char * host
Definition: mysql.h:228
char * db
Definition: mysql.h:228
unsigned int protocol
Definition: mysql.h:226
unsigned int write_timeout
Definition: mysql.h:225
bool report_data_truncation
Definition: mysql.h:244
char * charset_dir
Definition: mysql.h:230
char * bind_address
The local address to bind when connecting to remote server.
Definition: mysql.h:242
bool named_pipe
Definition: mysql.h:238
unsigned long client_flag
Definition: mysql.h:227
char * charset_name
Definition: mysql.h:230
char * user
Definition: mysql.h:228
unsigned int connect_timeout
Definition: mysql.h:225
bool compress
Definition: mysql.h:238
char * shared_memory_base_name
Definition: mysql.h:236
struct st_mysql_options_extention * extension
Definition: mysql.h:252
int(* local_infile_read)(void *, char *, unsigned int)
Definition: mysql.h:248
synode_no q[FIFO_SIZE]
Definition: xcom_base.cc:4058