iActiveRecord 1.3.2

iActiveRecord 1.3.2

TestsTested
LangLanguage CC
License MIT
ReleasedLast Release Dec 2014

Maintained by AlexDenisov.



  • By
  • Alex Denisov

ActiveRecord without CoreData.

Only SQLite.

Only HardCore.

Follow this repo on Twitter.

Features

  • ARC support
  • unicode support
  • migrations
  • validations (with custom validator support)
  • transactions
  • support for custom data types
  • relationships (BelongsTo, HasMany, HasManyThrough)
  • sorting
  • filters (where =, !=, IN, NOT IN and else)
  • joins
  • CocoaPods support
  • no more raw sql!!!

You do not need to create tables manually - just describe your ActiveRecord and enjoy!!!

#import <ActiveRecord/ActiveRecord.h>

@interface User : ActiveRecord

@property (nonatomic, retain) NSString *name;

@end

Check Wiki to see details!