FCModel icon indicating copy to clipboard operation
FCModel copied to clipboard

An alternative to Core Data for people who like having direct SQL access.

Results 32 FCModel issues
Sort by recently updated
recently updated
newest added

This fixes #158 for the most part. Only the Swift code adding the `ObservableObject` support I couldn't include because SwiftPM didn't want to accept mixed language packages. Maybe that can...

Nowadays with Xcode 12.3 out already, people are starting to switch from CocoaPods and Carthage to the official Apple dependency manager SwiftPM which is built into Xcode. Adding support for...

- `FCModel.h` imports "FMDatabase.h" already (maybe we can use `@class FMDatabase;` in `FCModel.h`, and keep it in `FCModel.m`?). - `FMDatabaseAdditions.h` seems not needed in `FCModel.m`.

Note: This warning comes from `FMDB.framework`, its related commit sha [`07e0362`](https://github.com/ccgus/fmdb/commit/07e0362) (23 May, 2017).

"continue" statement forces loop condition re-evaluation - while(conflict), this "conflict" value is initialized to false and does not change inside of loop body (loop will repeat itself only if condition...

Any schedule to support Carthage?

For the while and do...while loops, continue statement causes the program control pass to the conditional test - 'conflict' which is initialized to NO and never changed elsewhere. ``` BOOL...

asynchronously saving may be useful in some cases.

- (void)insertObj { // Put some data in the table if there's not enough NSArray *allColors = [Color allInstances]; NSUInteger numPeople = [Person numberOfInstances]; NSTimeInterval date1 = [NSDate.date timeIntervalSince1970]; NSLog(@"date1:%f",date1);...

Sometimes I would like use left join and use resultDictionariesFromQuery: get the raw value, then need to use this value to create an instance existing in db, I think it...