diff options
author | hf@deer.(none) <> | 2003-09-19 14:05:28 +0500 |
---|---|---|
committer | hf@deer.(none) <> | 2003-09-19 14:05:28 +0500 |
commit | cda32e123c5261a331d32b09397214a2b7686244 (patch) | |
tree | 2577ed3a7cb5e2f36f2d4fbcadf4fec7b885e4b9 /sql-common | |
parent | e89e3ff753220d161419f66852a3990b8d198f3a (diff) | |
download | mariadb-git-cda32e123c5261a331d32b09397214a2b7686244.tar.gz |
SCRUM
prepared statements in embedded library.
some fixes after testing
Diffstat (limited to 'sql-common')
-rw-r--r-- | sql-common/client.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sql-common/client.c b/sql-common/client.c index 5cdfd93158d..cd3763da725 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -1405,11 +1405,14 @@ static MYSQL_METHODS client_methods= cli_advanced_command, cli_read_rows, cli_mysql_use_result, - cli_fetch_lengths, - cli_list_fields, + cli_fetch_lengths +#ifndef MYSQL_SERVER + ,cli_list_fields, cli_read_prepare_result, cli_stmt_execute, - cli_read_binary_rows + cli_read_binary_rows, + cli_unbuffered_fetch +#endif }; MYSQL * STDCALL |