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 /sql-common | |
parent | 744fc5a5be4f733cd1db4dc1d5e433362a775215 (diff) | |
download | mariadb-git-7a763f3fe3acef2aeb0bc146ba249f1c34e765e0.tar.gz |
SCRUM
prepared statements in embedded library
Diffstat (limited to 'sql-common')
-rw-r--r-- | sql-common/client.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sql-common/client.c b/sql-common/client.c index b3ddd64e111..73fe9e4663c 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -636,10 +636,10 @@ void free_rows(MYSQL_DATA *cur) } } -static my_bool STDCALL +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) + const char *header, ulong header_length, + const char *arg, ulong arg_length, my_bool skip_check) { NET *net= &mysql->net; my_bool result= 1; @@ -1407,7 +1407,8 @@ static MYSQL_METHODS client_methods= cli_mysql_use_result, cli_fetch_lengths, cli_list_fields, - cli_read_prepare_result + cli_read_prepare_result, + cli_stmt_execute }; MYSQL * STDCALL |