diff options
author | hf@deer.(none) <> | 2003-09-17 20:48:53 +0500 |
---|---|---|
committer | hf@deer.(none) <> | 2003-09-17 20:48:53 +0500 |
commit | ddbca4176df154a27179e9b0b8a5379a41259a58 (patch) | |
tree | 883748d65cbe22427001e2d6bd03ea8386ee3593 /include | |
parent | 117d18335a6727256fba1a45b3c4e68a64887449 (diff) | |
download | mariadb-git-ddbca4176df154a27179e9b0b8a5379a41259a58.tar.gz |
SCRUM:
prepared statements in embedded library
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mysql.h b/include/mysql.h index 6ec64220706..a2da4f353f7 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -561,6 +561,8 @@ typedef struct st_mysql_methods MYSQL_FIELD * (STDCALL *list_fields)(MYSQL *mysql); my_bool (STDCALL *read_prepare_result)(MYSQL *mysql, MYSQL_STMT *stmt); int (STDCALL *stmt_execute)(MYSQL_STMT *stmt); + MYSQL_DATA *(STDCALL *read_binary_rows)(MYSQL_STMT *stmt); + } MYSQL_METHODS; MYSQL_STMT * STDCALL mysql_prepare(MYSQL * mysql, const char *query, |