diff options
author | hf@deer.(none) <> | 2003-09-17 15:18:18 +0500 |
---|---|---|
committer | hf@deer.(none) <> | 2003-09-17 15:18:18 +0500 |
commit | 7a763f3fe3acef2aeb0bc146ba249f1c34e765e0 (patch) | |
tree | e8962724415be2d9f12cb72ce87a2be43fe4b342 /include/sql_common.h | |
parent | 744fc5a5be4f733cd1db4dc1d5e433362a775215 (diff) | |
download | mariadb-git-7a763f3fe3acef2aeb0bc146ba249f1c34e765e0.tar.gz |
SCRUM
prepared statements in embedded library
Diffstat (limited to 'include/sql_common.h')
-rw-r--r-- | include/sql_common.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/sql_common.h b/include/sql_common.h index 1ca1b9b2348..1f442339c4f 100644 --- a/include/sql_common.h +++ b/include/sql_common.h @@ -34,6 +34,13 @@ void end_server(MYSQL *mysql); my_bool mysql_reconnect(MYSQL *mysql); void mysql_read_default_options(struct st_mysql_options *options, const char *filename,const char *group); +my_bool STDCALL +cli_advanced_command(MYSQL *mysql, enum enum_server_command command, + const char *header, ulong header_length, + const char *arg, ulong arg_length, my_bool skip_check); + +void set_stmt_errmsg(MYSQL_STMT * stmt, const char *err, int errcode, + const char *sqlstate); #ifdef __cplusplus } #endif |