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>2013-02-01 03:30:56 +0400
committerAugust Mueller <gus@flyingmeat.com>2013-02-01 03:30:56 +0400
commit5a463d036d8f8ab8cc4db6e7a174805d148106e1 (patch)
treeea39d2ffc2b901b86c6492d3d1eb99bea067cbbe /CHANGES_AND_TODO_LIST.txt
parent451ec2bbc43d749ad4e21567771f36433a61a43c (diff)
Cleanup of some code + notes on what is going on
Diffstat (limited to 'CHANGES_AND_TODO_LIST.txt')
-rw-r--r--CHANGES_AND_TODO_LIST.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGES_AND_TODO_LIST.txt b/CHANGES_AND_TODO_LIST.txt
index 8a4b26b..848856d 100644
--- a/CHANGES_AND_TODO_LIST.txt
+++ b/CHANGES_AND_TODO_LIST.txt
@@ -3,6 +3,9 @@ Zip, nada, zilch. Got any ideas?
If you would like to contribute some code- awesome! I just ask that you make it conform to the coding conventions already set in here, and to add a couple of tests for your new code to fmdb.m. And of course, the code should be of general use to more than just a couple of folks. Send your patches to gus@flyingmeat.com.
+2013.01.31
+ Lazy init of columnNameToIndexMap in FMResultSet, and you are now able to use it before asking for any rows first. Thanks to Daniel Dickison for the patch!
+
2012.12.17
Now resetting cached statements before executing a query on them (as well as resetting them at the close of a result set). There was an issue where if you used the same query twice without closing the result set of the first one, you would get results back from the previous query, or maybe an exhausted result set. Thanks to note173 on github for pointing out the problem.