summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mysql.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/mysql.h b/include/mysql.h
index fbc30b0373f..350ce860a2f 100644
--- a/include/mysql.h
+++ b/include/mysql.h
@@ -229,12 +229,11 @@ 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_send_query(MYSQL *mysql, const char *q,
+ unsigned int length);
+int STDCALL mysql_read_query_result(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);