SwiftFFDB 2.3

SwiftFFDB 2.3

TestsTested
LangLanguage SwiftSwift
License Apache-2.0
ReleasedLast Release Feb 2021
SPMSupports SPM

Maintained by Fidetro--verbose.



  • By
  • fidetro

SwiftFFDB

中文文档


SwiftFFDB is a Object/Relational Mapping (ORM) support to iOS and Perfect-Server library.Since SwiftFFDB is build on top of FMDB.
if you use Objective-C,you can use FFDB

Wiki

More examples of usage in the wiki(unfinished)

Requirements

iOS

  • Build Swift5.0 releases toolchain
  • Deployment on iOS 8 or above
  • depend FMDB

Installing

CocoaPod

SwiftFFDB can be installed using CocoaPod

$ vim Podfile

Then,edit the Podfile,add SwiftFFDB:

platform :ios, '8.0'
target 'YouApp' do
use_frameworks!
pod 'SwiftFFDB'
end

Useage

Setting

You can check out the example project if you use in iOS:

Person.registerTable() //create table

Create

create table model would you look like this:

struct Person:FFObject {
    var primaryID: Int64?
    
    var name : String?
    
    static func ignoreProperties() -> [String]? {
        return nil
    }
    
    static func customColumnsType() -> [String : String]? {
        return nil
    }
    
    static func customColumns() -> [String : String]? {
        return nil
    }

    static func autoincrementColumn() -> String? {
        return "primaryID"
    }
}

Insert

var person = Person()
person.name = "fidetro"
person.insert()

Select

// find all Object
Person.select(where: nil)
// find name is 'fidetro' 
Person.select(where: "name = 'fidetro'")

Update

// update name is 'fidetro' to 'ffdb'
Person.update(set: "name = ?", where: "name = ?", values: ["ffdb","fidetro"])  

Delete

// find name is 'fidetro' 
let personList = Person.select(where: "name = 'fidetro'")

for (let person in personList){
    // delete this person in database
    person.delete()
}

also you can:

FFDBManager.delete(Person.self, where: "name = 'fidetro'")

Architecture

Support

SwiftFFDB is a personal open source project,but I happy to answer questions in Issues or email to [email protected]