Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ccgus/fmdb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAugust Mueller <gus@flyingmeat.com>2019-01-31 21:04:45 +0300
committerAugust Mueller <gus@flyingmeat.com>2019-01-31 21:04:45 +0300
commit7da3c812cdddd6f5da1df31e7751ef3e56dacd6b (patch)
tree244bdba3fad8236a20e0ac1f0702719a3ca43635
parent862d537676d2b2610e5db5257422439acf0da7f6 (diff)
Documentation update.
-rw-r--r--README.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index a9b5dd4..012c524 100644
--- a/README.markdown
+++ b/README.markdown
@@ -247,7 +247,7 @@ if ([s next]) {
Each of these methods also has a `{type}ForColumnIndex:` variant that is used to retrieve the data based on the position of the column in the results, as opposed to the column's name.
-Typically, there's no need to `-close` an `FMResultSet` yourself, since that happens when either the result set is deallocated, or the parent database is closed.
+Typically, there's no need to `-close` an `FMResultSet` yourself, since that happens when either the result set is exhausted. However, if you only pull out a single request or any other number of requests which don't exhaust the result set, you will need to call the `-close` method on the `FMResultSet`.
### Closing