1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

- Fix for CONC-136: mysql_select_db_start/cont aren't declared in mysql.h

- ma_dyncol.h no longer requires longlong declaration from my_global.h
This commit is contained in:
Georg Richter
2015-07-14 06:07:36 +02:00
parent bdb3c6566d
commit 318257b011
2 changed files with 14 additions and 0 deletions

View File

@@ -506,6 +506,8 @@ int STDCALL mysql_autocommit_start(my_bool *ret, MYSQL * mysql,
int STDCALL mysql_autocommit_cont(my_bool *ret, MYSQL * mysql, int status);
int STDCALL mysql_next_result_start(int *ret, MYSQL *mysql);
int STDCALL mysql_next_result_cont(int *ret, MYSQL *mysql, int status);
int STDCALL mysql_select_db_start(int *ret, MYSQL *mysql, const char *db);
int STDCALL mysql_select_db_cont(int *ret, MYSQL *mysql, int ready_status);
int STDCALL mysql_stmt_next_result_start(int *ret, MYSQL_STMT *stmt);
int STDCALL mysql_stmt_next_result_cont(int *ret, MYSQL_STMT *stmt, int status);