Skip to content

fedefrappi/iActiveRecord

 
 

Repository files navigation

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!

About

ActiveRecord for iOS without CoreData, only SQLite

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 75.7%
  • Objective-C 24.2%
  • Ruby 0.1%