Joshua Tessier
|
a79c1839c3
Fixes a variable argument crash if an incorrect number of arguments are passed in
|
13 years ago |
August Mueller
|
6740330e8a
Cleanup.
|
12 years ago |
Phillip Kast
|
4adb30e9dd
Add key methods that take NSData
|
13 years ago |
August Mueller
|
d3f1d15ee0
Little fix that never actually broke anything.
|
13 years ago |
Jim Correia
|
c199a6de6f
Fixed potential dereference of NULL outErr argument in -startSavePointWithName:error: and -releaseSavePointWithName:error:.
|
13 years ago |
August Mueller
|
e7b3d9490f
Fixed a crasher when trying to open up a temporary database.
|
13 years ago |
August Mueller
|
4a2fe82d02
Might want to call those asserts before an abort()…
|
13 years ago |
ccgus
|
8afcebcb4a
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.
|
13 years ago |
ccgus
|
ca40737958
Changed up how the binding count is calculated when passing a dictionary for named parameter support. Thanks to Samuel Chen for pointing out the problem
|
13 years ago |
August Mueller
|
f0904b446a
Merge branch 'master' of github.com:ccgus/fmdb
|
13 years ago |
August Mueller
|
8fba9b8c86
Fixed a bunch of warnings that would come up with certain compiler options.
|
13 years ago |
ccgus
|
8666d8f95a
Changed up the behavior of binding empty NSData objects ([NSData data]). It will now insert an empty value, rather than a null value- which is consistent with [NSMutableData data] and empty strings (see https://github.com/ccgus/fmdb/issues/73 for a discussion on this). Thanks to Jens Alfke for pointing this out!
|
13 years ago |
August Mueller
|
46614e25a9
Code cleanup
|
13 years ago |
dodikk
|
f0bf7d29af
fixed error domain behaviour
|
13 years ago |
ccgus
|
87748d1d66
Added support for unsigned long long int values.
|
14 years ago |
ccgus
|
0cfca84994
Random code and documentation cleanup.
|
14 years ago |
ccgus
|
ab3b78cf02
Got rid of the pop and pull from the database pool- too dangerous! Updated readme and tests.
|
14 years ago |
August Mueller
|
e3dfb9dabc
Fixes for ARC + the latest llvm.
|
14 years ago |
ccgus
|
c18eac424c
NSAssert fixes for building on older sdks.
|
14 years ago |
August Mueller
|
5f14e7da23
Added the ability to make custom sqlite functions from blocks.
|
14 years ago |
August Mueller
|
c3ec8a3b4e
Added some macros so that FMDB can be used in ARC and non-ARC'd projects.
|
14 years ago |
August Mueller
|
d9c0b0eba8
executeUpdate: wasn't returning the correct value when a bad query went though.
|
14 years ago |
Sriram Patil
|
c850c14442
Fixed a bug of closed db and did some pool optimizations
|
14 years ago |
August Mueller
|
2f0225b661
Added a warning if there are result sets open when using the database queue.
|
14 years ago |
August Mueller
|
2ae7b82a1a
Oh, just a little refactor.
|
14 years ago |
ccgus
|
9c5df78bbd
Include fixes, and making an exception thrown when a query is used in executeUpdate:
|
14 years ago |
August Mueller
|
ebc0f4edd5
Added __weak ivar support for the database pool if you're on 10.7 or later.
|
14 years ago |
ccgus
|
93d4536e5e
added a warning as a note to myself to make _pool a weak ivar.
|
14 years ago |
August Mueller
|
dc359ce0de
The setting to crash on errors actually crashes now (by way of calling abort), instead of throwing an exception.
|
14 years ago |
ccgus
|
b057ebf36b
Took out a leftover debug statement.
|
14 years ago |