Skip to content

Commit

Permalink
Words.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccgus committed Oct 11, 2020
1 parent 9ae0834 commit 465d516
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ FMResultSet *s = [db executeQuery:@"SELECT COUNT(*) FROM myTable"];
if ([s next]) {
int totalCount = [s intForColumnIndex:0];
}
[s close]; // If you cannot confirm whether the result set is exhausted, you will need to call the -close method on the FMResultSet for safety.
[s close]; // Call the -close method on the FMResultSet if you cannot confirm whether the result set is exhausted.
```

`FMResultSet` has many methods to retrieve data in an appropriate format:
Expand Down

0 comments on commit 465d516

Please sign in to comment.