sqlite-orm-swift icon indicating copy to clipboard operation
sqlite-orm-swift copied to clipboard

🧡 Easy to use SQLite ORM library written with love and Swift

Results 2 sqlite-orm-swift issues
Sort by recently updated
recently updated
newest added

```swift enum CompassPoint: Int { case none case north case south case east case west } extension CompassPoint : Bindable, ConstructableFromSQLiteValue { init(sqliteValue: SQLiteORM.SQLiteValue) { self = CompassPoint(rawValue: sqliteValue.integer) ??...

example

Hi Can you write more example like: Sort (order), Limit ? Thanks !