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-10-22 08:59:41 +0400
committerAugust Mueller <gus@flyingmeat.com>2013-10-22 08:59:41 +0400
commitcac897ed8707a13697d8609768bab37d55d80c4d (patch)
treeae211a91bc467f1170600def93e720eb7eba1149 /CHANGES_AND_TODO_LIST.txt
parent185509b75784e783fd228dacc54645a1afc14f94 (diff)
Fixed a problem where having statement caching turned on would cause issues when trying to use two result sets with the same query but different binding parameters. Thanks to Nick Hodapp for the original patch.
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 8dc8f63..40ec000 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.10.21
+ Fixed a problem where having statement caching turned on would cause issues when trying to use two result sets with the same query but different binding parameters. Thanks to Nick Hodapp for the original patch.
+
2013.10.16
Added methods that expose va_list arguments. Thanks to Ibrahim Ennafaa for the patch.