summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormonty@donna.mysql.fi <>2001-03-06 15:24:08 +0200
committermonty@donna.mysql.fi <>2001-03-06 15:24:08 +0200
commitbda3e099358ddcad825c1231f2a0f14697abd59c (patch)
tree54c7bf220f9e21e9f04e2ff2e8a018cf4e33e837 /include
parent7b275cf2ec780057c004726d9d96fda8447b1287 (diff)
downloadmariadb-git-bda3e099358ddcad825c1231f2a0f14697abd59c.tar.gz
Merged some functions and removed some unused client functions.
Remember UNION for ALTER TABLE Added test for if we are supporting transactions. Don't allow REPLACE to replace a row when we have generated an auto_increment key Fixed bug when using BLOB keys Fixed bug in SET @variable=user.
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);