diff options
author | unknown <paul@teton.kitebird.com> | 2001-11-30 10:50:14 -0600 |
---|---|---|
committer | unknown <paul@teton.kitebird.com> | 2001-11-30 10:50:14 -0600 |
commit | cf87803b0929c3f259dc0489ff3a1045b7859068 (patch) | |
tree | 40f8586e8c1e03eda57a3ee4be338c03aeb067bc | |
parent | 95e94560eac0ee72bbc566517ca70f14128a01e8 (diff) | |
download | mariadb-git-cf87803b0929c3f259dc0489ff3a1045b7859068.tar.gz |
manual.texi mysql_store_results() -> mysql_store_result()
Docs/manual.texi:
mysql_store_results() -> mysql_store_result()
-rw-r--r-- | Docs/manual.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index 1e64a53ffbc..e314153113f 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -41017,10 +41017,10 @@ use @code{mysql_field_count()} to check for this. allocates a @code{MYSQL_RES} structure, and places the result into this structure. -@code{mysql_store_results()} returns a null pointer if the query didn't return +@code{mysql_store_result()} returns a null pointer if the query didn't return a result set (if the query was, for example, an @code{INSERT} statement). -@code{mysql_store_results()} also returns a null pointer if reading of the +@code{mysql_store_result()} also returns a null pointer if reading of the result set failed. You can check if you got an error by checking if @code{mysql_error()} doesn't return a null pointer, if @code{mysql_errno()} returns <> 0, or if @code{mysql_field_count()} |