diff options
author | unknown <venu@myvenu.com> | 2003-06-04 00:17:48 -0700 |
---|---|---|
committer | unknown <venu@myvenu.com> | 2003-06-04 00:17:48 -0700 |
commit | 3846580d3f0e9d6c193e6ca84e89f28e9ae90670 (patch) | |
tree | 43a1d44cab845471af88925dee322968cec7dae5 /include | |
parent | b7eadb2a098c3734a6715c33f30bdd28e4f049a4 (diff) | |
download | mariadb-git-3846580d3f0e9d6c193e6ca84e89f28e9ae90670.tar.gz |
1. Portability fixups for Connector/ODBC 3.52 & DBD
(Addition of mysql_fetch_column & mysql_stmt_free_result)
2. Windows build fixups for libmysqld, mysqlbinlog and mysqldemb
VC++Files/mysqldemb/mysqldemb.dsp:
Remove old files
VC++Files/libmysqld/libmysqld.dsp:
remove old files and add new ones
VC++Files/mysqlbinlog/mysqlbinlog.dsp:
Resolve linker errors by adding mf_tmpdir.c to binlog wrk space
include/mysql.h:
Portability fixups for Connector/ODBC 3.52 & DBD
libmysql/libmysql.c:
Portability fixups for Connector/ODBC 3.52 & DBD
(Addition of mysql_fetch_column & mysql_stmt_free_result)
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mysql.h b/include/mysql.h index 91e4c6444ee..f57382cb6a1 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -566,6 +566,7 @@ unsigned long STDCALL mysql_param_count(MYSQL_STMT * stmt); my_bool STDCALL mysql_bind_param(MYSQL_STMT * stmt, MYSQL_BIND * bnd); my_bool STDCALL mysql_bind_result(MYSQL_STMT * stmt, MYSQL_BIND * bnd); my_bool STDCALL mysql_stmt_close(MYSQL_STMT * stmt); +my_bool STDCALL mysql_stmt_free_result(MYSQL_STMT *stmt); unsigned int STDCALL mysql_stmt_errno(MYSQL_STMT * stmt); const char *STDCALL mysql_stmt_error(MYSQL_STMT * stmt); const char *STDCALL mysql_stmt_sqlstate(MYSQL_STMT * stmt); |