diff options
author | unknown <monty@donna.mysql.com> | 2001-01-21 16:33:39 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-01-21 16:33:39 +0200 |
commit | ea5451ff79c2c125ff21b27f75479f09c46a660d (patch) | |
tree | 7fd2b17b673d232a6c11c7fa1f28e82eca3969b9 /include | |
parent | ab7afc8c36279051e25d157993281bd9dba4a58a (diff) | |
parent | d9d879feeafb713abd58add7e0ab930478e1dab6 (diff) | |
download | mariadb-git-ea5451ff79c2c125ff21b27f75479f09c46a660d.tar.gz |
Merge
BitKeeper/etc/logging_ok:
auto-union
configure.in:
Auto merged
Docs/manual.texi:
SCCS merged
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mysql.h b/include/mysql.h index 5c2646b592d..fbc30b0373f 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -229,8 +229,12 @@ MYSQL * STDCALL mysql_real_connect(MYSQL *mysql, const char *host, void STDCALL mysql_close(MYSQL *sock); int STDCALL mysql_select_db(MYSQL *mysql, const char *db); int STDCALL mysql_query(MYSQL *mysql, const char *q); +int STDCALL mysql_send_query(MYSQL *mysql, const char *q); +int STDCALL mysql_reap_query(MYSQL *mysql); int STDCALL mysql_real_query(MYSQL *mysql, const char *q, unsigned int length); +int STDCALL mysql_real_send_query(MYSQL *mysql, const char *q, + unsigned int len); int STDCALL mysql_create_db(MYSQL *mysql, const char *DB); int STDCALL mysql_drop_db(MYSQL *mysql, const char *DB); int STDCALL mysql_shutdown(MYSQL *mysql); |