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-04-24Updated podspec for a tag that doesn't exist yet.executeStatementsAugust Mueller
2014-04-24Added a version to the code, and added an API to it as well.August Mueller
2014-04-24Notes, and a version number!August Mueller
2014-04-24Removed FMDatabaseSplitter, since it's no longer needed and cleaned up some ↵August Mueller
code.
2014-04-24Removed some tests from main.m (since I want to remove them all eventually ↵August Mueller
in favor of the test suite), and fixed some warnings, and updated some logs.
2014-04-24sshhhh clang, it'll be alright.August Mueller
2014-04-23Notes and renames.August Mueller
2014-04-23Deprecation of a method, because its name sucked.August Mueller
2014-04-23Cleanup and little changes.August Mueller
2014-04-23Merge branch 'master' of git://github.com/robertmryan/fmdb into ↵August Mueller
robertmryan-master
2014-04-21Only run appledoc on the .h files.robertmryan
2014-04-18Added pragma mark because FMDatabase was getting a little hairy, and it ↵Rob Ryan
makes it a little easier to navigate in Xcode; add appledoc not in FMDatabaseBusyHandler; changed the C functions to use consistent prefix (some used `FMDB`, some used `FM`, some used no prefix … they now all use `FMDB`
2014-04-18Updated appledoc headersRob Ryan
2014-04-17Add `FMDB` prefix to callback typerobertmryan
2014-04-17Updated test cases for executeBulkSQLrobertmryan
2014-04-17Fix FMDBQuickCheck for bulk testrobertmryan
2014-04-17Update documentationrobertmryan
2014-04-17Add `executeBulkSQL` methodsrobertmryan
2014-04-16Merge pull request #250 from OpenFibers/masterAugust "Gus" Mueller
Some commits for FMSQLStatementSplitter
2014-04-16added appledoc-style documentation to headers of FMSQLStatementSplitteropenthread
2014-04-16README updated for FMSQLStatementSplitter usageopenthread
2014-04-16added an example for using FMSQLStatementSplitter in main.mopenthread
2014-04-16fixed warnings in `FMStatementSplitter` when compiling for mac 64-bitopenthread
2014-04-14Update contrib stuff.August Mueller
2014-04-09Notes on what's going on today.busyloopbackAugust Mueller
2014-04-09Merge branch 'master' of https://github.com/ccgus/fmdb into busyloopbackAugust Mueller
2014-04-09notes.August Mueller
2014-04-09Moved some stuff around.August Mueller
2014-04-07added batch sql splitteropenthread
2014-03-15Merge branch 'master' of https://github.com/ccgus/fmdb into busyloopbackAugust Mueller
2014-03-15Merge pull request #240 from robertmryan/masterAugust "Gus" Mueller
Reorganized directory structure a little
2014-03-10Update podspecrobertmryan
2014-03-10Create FMDB.h to include all the standard includes; moved framework code ↵robertmryan
into its own subdirectory, “fmdb”; renamed fmdb.m to main.m to avoid confusion with new FMDB.h file; moved .pch and main.m into src/sample
2014-03-01Discovered sqlite3_busy_handler, and got to kill some ivars and code. ↵August Mueller
busyTimeout has been replaced by setMaxBusyRetryTimeInterval: - this is a _lot_ better than adding loops everywhere.
2014-02-12Adding back in a loop for catching database busy errors. It needs to be ↵August Mueller
added back in other spots as well, which I'll do - but I haven't thought of the best way to break out of the loop yet, so I'm going to request some comments on that.
2014-01-30Merge pull request #229 from pietrasm/masterAugust "Gus" Mueller
Added a static library for iOS.
2014-01-24Added a static library for iOS.Michal Pietras
2014-01-20More notes to self.ccgus
2014-01-20Cleanup, and then while debugging a test, noticed that sqlite3_busy_timeout ↵ccgus
doesn't retry a sqlite3_step for you automatically. So that's a problem that I'll need to fix.
2014-01-20Merge pull request #225 from DanOranges/masterAugust "Gus" Mueller
Fixed [FMDatabase openWithFlags:] so it does not reopen the db unnecessarily
2014-01-20Removed an unnecessary header comment in FMDatabaseAdditions.h.DanOrange
2014-01-18Added in support for userVersion propertyDanOrange
This uses '#PRAGMA user_version' to store/retrieve a uint32 value. According the sqlite3 docs can be used by applications for any purpose. It is useful for tracking database versions, and is used on by the Android SDK calls for that purpose, which can be helpful when doing cross platform work.
2014-01-18Fixed [FMDatabase openWithFlags:] so it does not reopen the db unnecessarilyDanOrange
This is just copying what was done in [FMDatabase open:] by return YES if the database already exists. This solves a problem with issue #211 where any connection changes being made in the [FMDatabasePoolDelegeate databasePool: didAddDatabase:] would just get reset as the database would be reopened on each pool call. Likely inefficent as well.
2014-01-18Contribs and notes.ccgus
2014-01-18Merge pull request #224 from mikeash/masterAugust "Gus" Mueller
Add a deadlock check to -[FMDatabaseQueue inDatabase:]
2014-01-18I hate tabs.ccgus
2014-01-18Merge pull request #223 from hartdev/masterAugust "Gus" Mueller
Fixed consistency problems with errorsOnCrash
2014-01-17Fixed consistency problems with errorsOnCrashDavid Hart
2014-01-17Add a deadlock check to -[FMDatabaseQueue inDatabase:]Mike Ash
2014-01-13Merge pull request #220 from robertmryan/master2.2-podAugust "Gus" Mueller
Change the use of #if / #endif