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
AgeCommit message (Collapse)Author
2014-01-01CleanupbusyTimeoutAugust Mueller
2013-12-18Fix for issue #211: Add 'databasePool:didAddDatabase:' method to ↵Timur Islamgulov
FMDatabasePoolDelegate protocol
2013-12-10Notes on what's been going on.ccgus
2013-12-10Merge branch 'master' of github.com:ccgus/fmdb into busyTimeoutccgus
2013-12-10Merge branch 'testcases' of git://github.com/GrahamDennis/fmdb into ↵ccgus
GrahamDennis-testcases
2013-12-10Cleanupccgus
2013-12-10Merge pull request #213 from 5at5ish/masterAugust "Gus" Mueller
Fix for issue #203: Add 'databaseClass' class method for FMDatabaseQueue.
2013-12-10Merge pull request #206 from GrahamDennis/dispatch-arc-simplifyAugust "Gus" Mueller
Simplify conditionals used to determine whether dispatch objects need explicit releasing.
2013-12-05Fix for issue #203: Add 'databaseClass' class method for FMDatabaseQueue. ↵Timur Islamgulov
Subclasses can override this method to return specified Class of 'FMDatabase' subclass.
2013-12-03if DEBUG is defined, then you'll get a little more info when you've got open ↵ccgus
result sets out when using the queue.
2013-11-29Fix -[FMDatabaseTests testApplicationID]Graham Dennis
There were compile errors in this code because I just copy/pasted it from fmdb.m without making the changes for XCTest. It wasn't causing problems for me because I am using a version of SQLite older than the preprocessor check.
2013-11-25Add a build status image from Travis-CI.Graham Dennis
This will only work if @ccgus adds fmdb to Travis-CI.
2013-11-24Add a .travis.yml file to use Travis CI for automated testing.Graham Dennis
Add a Tests scheme for Travis CI.
2013-11-24Converting fmdb.m to XCTest tests.Graham Dennis
Move FMDBTempDBTests class into the Tests directory.
2013-11-23Add a comment explaining the use of OS_OBJECT_USE_OBJCGraham Dennis
2013-11-22Add support for openFlags to FMDatabasePool.Graham Dennis
Also specify that openFlags is read-only on FMDatabaseQueue.
2013-11-22Simplify conditionals used to determine whether dispatch objects need ↵Graham Dennis
explicit releasing.
2013-11-11CleanupAugust Mueller
2013-11-11Merge branch 'master' of https://github.com/ccgus/fmdb into busyTimeoutAugust Mueller
2013-11-11Merge pull request #201 from NachoSoto/masterAugust "Gus" Mueller
Overriding the parent class designated initializer
2013-11-11New busy timeout stuff - going to test it out on a branch for a bit before ↵August Mueller
mainline commit.
2013-11-07Just a little refactoring for the busy timeout stuff.ccgus
2013-11-06Overriding the parent class designated initializer (- init) in FMDatabase, ↵NachoSoto
FMDatabasePool and FMDatabaseQueue. This ensures that the class will be fully initialized even if using the designated initializer of NSObject. Documentation: https://developer.apple.com/library/ios/documentation/general/conceptual/devpedia-cocoacore/MultipleInitializers.html
2013-11-05Making sure that certain OS X only stuff is only called when compiling for ↵August Mueller
the mac.
2013-10-22Merge pull request #199 from snooc/podspec-dsqliteAugust "Gus" Mueller
Sync'd podspec with podspec from Cocoapods Specs.
2013-10-22Sync'd podspec with podspec from Cocoapods Specs.Cody Coons
2013-10-22Graham Dennis gets some props.August Mueller
2013-10-22Fixed a problem where having statement caching turned on would cause issues ↵August Mueller
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-22Merge pull request #179 from snooc/podspec-dsqliteAugust "Gus" Mueller
Compilation Issue when using CocoaPods + SQLCipher
2013-10-22Merge pull request #194 from GrahamDennis/issue-193August "Gus" Mueller
Fix issue #193: inSavepoint: should release savepoints that are rolled back
2013-10-22Formatting fixes.August Mueller
2013-10-22Merge branch 'issue-192' of git://github.com/GrahamDennis/fmdb into ↵August Mueller
GrahamDennis-issue-192
2013-10-22Added support for open flags to FMDatabaseQueueGwyn Judd
2013-10-21Added CocoaPods section to REAMDE.Cody Coons
Section includes notes for FMDB/SQLCipher subspec
2013-10-18Added Subspec to require SQLCipher as a dependency.Cody Coons
2013-10-18Fix issue #192: All savepoints are called '?'Graham Dennis
2013-10-18Fix issue #193: inSavepoint: should release savepoints that are rolled back.Graham Dennis
2013-10-16Added methods that expose va_list argumentsccgus
2013-10-08Merge pull request #189 from regexident/patch-1August "Gus" Mueller
Changed `isEqualTo:` (AppleScript support) to `isEqual:` (NSObject)
2013-10-02Changed `isEqualTo:` (AppleScript support) to `isEqual:` (NSObject)regexident
The method `isEqualTo:` is part of the scripting support API (for computing `NSWhoseSpecifier`s specifically), the proper selector would thus be `isEqual:`. Reference: https://developer.apple.com/library/mac/documentation/cocoa/reference/foundation/Protocols/NSComparisonMethods_Protocol/Reference/Reference.html#//apple_ref/occ/instm/NSObject/isEqualTo:
2013-09-26Logs errors is now turned on by default. It's easy to turn off, and if ↵ccgus
you're seeing errors then you should probably fix those.
2013-09-26Merge pull request #181 from J-Jay/masterAugust "Gus" Mueller
don’t print error log when _logsErrors == NO
2013-09-09Merge pull request #182 from tiennou/stuffAugust "Gus" Mueller
Some fixes
2013-09-08Use prepared statements for generating the savepoint name.Etienne Samson
This removes the FIXME, and feels leaner.
2013-09-08NULL pointer dereference.Etienne Samson
2013-09-04don’t print error log when _logsErrors == NOJean-Jacques MERILLON
2013-08-08Merge pull request #168 from piemonte/masterAugust "Gus" Mueller
FMDatabase: fixes static analyzer warning, API Misuse (Apple)
2013-08-08Merge pull request #174 from robertmryan/masterAugust "Gus" Mueller
Documentation Update re executeUpdateWithFormat and executeQueryWithFormat
2013-08-06Minor README correctionrobertmryan
2013-08-06Removed redundant Foundation.framework referencerobertmryan