diff options
author | unknown <konstantin@mysql.com> | 2004-06-16 23:11:02 +0400 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2004-06-16 23:11:02 +0400 |
commit | 340162df2c606556b2675ecc03ae4c137d00fe15 (patch) | |
tree | bebc33ab679dbce4faa40b77ab8192f7d1527fac /include | |
parent | fe497c0b502dec254a73a983ab8d91d1f2233e08 (diff) | |
download | mariadb-git-340162df2c606556b2675ecc03ae4c137d00fe15.tar.gz |
Comments and cleanups in client library.
include/mysql.h:
mysql_bind_param -> mysql_stmt_bind_param
libmysql/libmysql.c:
- more comments
- trailing spaces stripped
- update_statement_metadata moved to appropriate section (from 'Statement
close and error reporting' section)
- store_param_type moved to store_ functions
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql.h b/include/mysql.h index 71bff833d59..39b9b7da000 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -558,7 +558,7 @@ typedef struct st_mysql_bind enum enum_field_types buffer_type; /* buffer type */ unsigned long buffer_length; /* buffer length, must be set for str/binary */ - /* Following are for internal use. Set by mysql_bind_param */ + /* Following are for internal use. Set by mysql_stmt_bind_param */ unsigned char *inter_buffer; /* for the current data position */ unsigned long offset; /* offset position for char/binary fetch */ unsigned long internal_length; /* Used if length is 0 */ |