diff options
author | konstantin@mysql.com <> | 2004-12-15 01:37:22 +0300 |
---|---|---|
committer | konstantin@mysql.com <> | 2004-12-15 01:37:22 +0300 |
commit | 91457448c29e4d6a23583fb8fd35ad763b2d93da (patch) | |
tree | f6691f78f66d284205393bb523fdc5586ae82c81 /libmysql/errmsg.c | |
parent | a2a3d82e62d83ce8fc5d2be6cae2e4532ca6482f (diff) | |
download | mariadb-git-91457448c29e4d6a23583fb8fd35ad763b2d93da.tar.gz |
A fix of return value of mysql_stmt_bind_result() and cleanup.
Diffstat (limited to 'libmysql/errmsg.c')
-rw-r--r-- | libmysql/errmsg.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/libmysql/errmsg.c b/libmysql/errmsg.c index 710bf4ccd8d..5fa94e5ff0d 100644 --- a/libmysql/errmsg.c +++ b/libmysql/errmsg.c @@ -78,7 +78,9 @@ const char *client_errors[]= "Invalid connection handle", "Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled)", "Row retrieval was canceled by mysql_stmt_close() call", - "Attempt to read column without prior row fetch" + "Attempt to read column without prior row fetch", + "Prepared statement contains no metadata", + "" }; /* Start of code added by Roberto M. Serqueira - martinsc@uol.com.br - 05.24.2001 */ @@ -137,7 +139,9 @@ const char *client_errors[]= "Invalid connection handle", "Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled)", "Row retrieval was canceled by mysql_stmt_close() call", - "Attempt to read column without prior row fetch" + "Attempt to read column without prior row fetch", + "Prepared statement contains no metadata", + "" }; #else /* ENGLISH */ @@ -194,7 +198,9 @@ const char *client_errors[]= "Invalid connection handle", "Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled)", "Row retrieval was canceled by mysql_stmt_close() call", - "Attempt to read column without prior row fetch" + "Attempt to read column without prior row fetch", + "Prepared statement contains no metadata", + "" }; #endif |