diff options
author | monty@narttu.mysql.fi <> | 2003-09-23 13:36:01 +0300 |
---|---|---|
committer | monty@narttu.mysql.fi <> | 2003-09-23 13:36:01 +0300 |
commit | f05a1c83940557721a42c758e26f2adace291d0a (patch) | |
tree | 367cc7ddc8eef505b0dd3d8bd8d196d7aa8a105f /include | |
parent | 88faa2ab9554b775f4436bbe5bc051fc5c8e52f5 (diff) | |
download | mariadb-git-f05a1c83940557721a42c758e26f2adace291d0a.tar.gz |
Block SIGPIPE also for not threaded client programs.
Added --include and --libs_r options to mysql_config.
Added mysql_get_client_version() to client library
Fixed some minor benchmark issues
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/mysql.h b/include/mysql.h index b27d98e7e57..1db322d5304 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -349,10 +349,11 @@ int STDCALL mysql_refresh(MYSQL *mysql, unsigned int refresh_options); int STDCALL mysql_kill(MYSQL *mysql,unsigned long pid); int STDCALL mysql_ping(MYSQL *mysql); -const char * STDCALL mysql_stat(MYSQL *mysql); -const char * STDCALL mysql_get_server_info(MYSQL *mysql); -const char * STDCALL mysql_get_client_info(void); -const char * STDCALL mysql_get_host_info(MYSQL *mysql); +const char * STDCALL mysql_stat(MYSQL *mysql); +const char * STDCALL mysql_get_server_info(MYSQL *mysql); +const char * STDCALL mysql_get_client_info(void); +ulong STDCALL mysql_get_client_version(void); +const char * STDCALL mysql_get_host_info(MYSQL *mysql); unsigned int STDCALL mysql_get_proto_info(MYSQL *mysql); MYSQL_RES * STDCALL mysql_list_dbs(MYSQL *mysql,const char *wild); MYSQL_RES * STDCALL mysql_list_tables(MYSQL *mysql,const char *wild); |