iActiveRecord icon indicating copy to clipboard operation
iActiveRecord copied to clipboard

ActiveRecord for iOS without CoreData, only SQLite

Results 18 iActiveRecord issues
Sort by recently updated
recently updated
newest added

There is only one database connection (named `database`, ivar in `ARDatabaseManager` private interface). Is there a possibility to open another connection simultaneously to run queries while the first one let's...

Hi, i noticed when i tried to work with the updatedAt and other date fields, that the values returned from NSDate\* getters are in fact of type NSCFNumber* here is...

Hi, i noticed that there is a support for c-style types (e.g. Properties like BOOL, char, short, double ...etc Is this true ? Why should i use encapsulated NSNumber types...

Hi, i'm having a series of issues (see image attached) trying to build the framework on XCode 5.1. Have you managed to build for ios7/code 5 or is it still...

Using the following lines: ``` ARLazyFetcher* fetcher = team.users; User* asker = [self asker]; if (asker != nil) { [fetcher where:@"'user'.'serverUserId' != %@", asker.serverUserId, nil]; return fetcher.fetchRecords; } ``` crashed...

It's been about 9 months since 1.3.2. Is there going to be a new version sometime?

The "distinct" statement is missing. It would be useful to have something like: ``` NSArray * distinctRecords= [[[Model LazyFetcher] distinct] fetchRecords]; ```