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 | f6a363b3dda884fa91e713a8abd00cbd58a2f2a4 (patch) | |
tree | 7fd2b17b673d232a6c11c7fa1f28e82eca3969b9 /include | |
parent | 937ef17c2f810b83520b64ae8d4bcb45d99be0aa (diff) | |
parent | 1cda03b63a08de7751f6792b9cf99c1ad44b52e2 (diff) | |
download | mariadb-git-f6a363b3dda884fa91e713a8abd00cbd58a2f2a4.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); |