diff options
author | hf@deer.(none) <> | 2003-09-16 16:06:25 +0500 |
---|---|---|
committer | hf@deer.(none) <> | 2003-09-16 16:06:25 +0500 |
commit | bf017a2eb02db66afc70b8b03288f6e30d1907f2 (patch) | |
tree | e38da8c154875ca2ff180275d93d7dfa211f0f14 /libmysql/client_settings.h | |
parent | e63e2229b600926c1792e4e7ca56112dcb1d28bb (diff) | |
download | mariadb-git-bf017a2eb02db66afc70b8b03288f6e30d1907f2.tar.gz |
SCRUM
Prepared statements in embedded server
Several changes in library code with two goals:
to make mysql_prepare_stmt working in embedded server
to get rid of #define mysql_interface_func mysql->methods->interface_func
in user's interface
Diffstat (limited to 'libmysql/client_settings.h')
-rw-r--r-- | libmysql/client_settings.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/libmysql/client_settings.h b/libmysql/client_settings.h index 77506333779..2ad10bdc84c 100644 --- a/libmysql/client_settings.h +++ b/libmysql/client_settings.h @@ -41,6 +41,16 @@ my_bool send_file_to_server(MYSQL *mysql, const char *filename); #define reset_sigpipe(mysql) #endif -MYSQL_RES * STDCALL cli_list_fields(MYSQL *mysql, const char *table, const char *wild); -my_bool cli_read_prepare_result(MYSQL *mysql, MYSQL_STMT *stmt); +void mysql_read_default_options(struct st_mysql_options *options, + const char *filename,const char *group); +MYSQL * STDCALL +cli_mysql_real_connect(MYSQL *mysql,const char *host, const char *user, + const char *passwd, const char *db, + uint port, const char *unix_socket,ulong client_flag); +void STDCALL cli_mysql_close(MYSQL *mysql); + +MYSQL_FIELD * STDCALL cli_list_fields(MYSQL *mysql); +my_bool STDCALL cli_read_prepare_result(MYSQL *mysql, MYSQL_STMT *stmt); +MYSQL_DATA *cli_read_rows(MYSQL *mysql,MYSQL_FIELD *mysql_fields, + uint fields); |