Skip to content

Commit

Permalink
docs: update resultset.md in head to reflect 94 (#1528) (#1536)
Browse files Browse the repository at this point in the history
  • Loading branch information
mshajarrazip authored and davecramer committed Jul 31, 2019
1 parent fcbbc3e commit fc8efc9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/documentation/head/resultset.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,12 @@ The following must be considered when using the `ResultSet` interface:
* You must close a `ResultSet` by calling `close()` once you have finished using
it.
* Once you make another query with the `Statement` used to create a `ResultSet`,
the currently open `ResultSet` instance is closed automatically.
the currently open `ResultSet` instance is closed automatically.
* When PreparedStatement API is used, `ResultSet` switches to binary mode after
five query executions (this default is set by the `prepareThreshold`
connection property, see [Server Prepared Statements](server-prepare.md)).
This may cause unexpected behavior when some methods are called. For example,
results on method calls such as `getString()` on non-string data types,
while logically equivalent, may be formatted differently after execution exceeds
the set `prepareThreshold` when conversion to object method switches to one
matching the return mode.

0 comments on commit fc8efc9

Please sign in to comment.