diff options
author | konstantin@mysql.com <> | 2004-03-16 01:04:04 +0300 |
---|---|---|
committer | konstantin@mysql.com <> | 2004-03-16 01:04:04 +0300 |
commit | 420c956d279301f3af120b11da0e152bc4a8172c (patch) | |
tree | 752a7c190fcf0f92940319d09105b114f3e76d52 /libmysql/client_settings.h | |
parent | e90c78ceb51e1f0e64ceea8ca55ceea1ba040109 (diff) | |
download | mariadb-git-420c956d279301f3af120b11da0e152bc4a8172c.tar.gz |
Intermediate commit of client library (cleanups + fixes of 3 items from
flaws list)
TODO:
* verify that no sequence of API calls produces SIGSEGV.
That is, verify that mysql_stmt_init -> mysql_stmt_fetch is OK,
or mysql_stmt_prepare -> mysql_stmt_fetch_column is OK and sets
meaningful error.
* remove alloc_stmt_fields call
* revise stmt->state codes and statement states.
* there are other items in prepared statements 'to fix' document.
Done:
- cleanups and comments
- revision of prepared statement error codes.
- mysql_stmt_prepare is now can always be called (that is, you can reprepare
a statement)
- new implementation of mysql_stmt_close and fetch cancellation
Diffstat (limited to 'libmysql/client_settings.h')
-rw-r--r-- | libmysql/client_settings.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libmysql/client_settings.h b/libmysql/client_settings.h index e4475d76958..9fc8e67df27 100644 --- a/libmysql/client_settings.h +++ b/libmysql/client_settings.h @@ -22,7 +22,6 @@ extern my_string mysql_unix_port; CLIENT_PROTOCOL_41 | CLIENT_SECURE_CONNECTION) sig_handler pipe_sig_handler(int sig __attribute__((unused))); -my_bool stmt_close(MYSQL_STMT *stmt, my_bool skip_free); void read_user_name(char *name); my_bool send_file_to_server(MYSQL *mysql, const char *filename); |