You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reads in one result returned from the MySQL server.
280
280
@@ -305,7 +305,7 @@ If more results are following the current result, a second `err` return value wi
305
305
306
306
In case of errors, this method returns at most 4 values: `nil`, `err`, `errcode`, and `sqlstate`. The `err` return value contains a string describing the error, the `errcode` return value holds the MySQL error code (a numerical value), and finally, the `sqlstate` return value contains the standard SQL error code that consists of 5 characters. Note that, the `errcode` and `sqlstate` might be `nil` if MySQL does not return them.
307
307
308
-
The optional argument `est_nrows` can be used to specify an approximate number of rows for the result set. This value can be used
308
+
The optional argument `nrows` can be used to specify an approximate number of rows for the result set. This value can be used
309
309
to pre-allocate space in the resulting Lua table for the result set. By default, it takes the value 4.
0 commit comments