纯 Swift 封装的 SQLite 框架:SQLite.swift

SQLite.swift 是一个使用纯 Swift 语言封装 SQLite3 的操作框架。

特性:

  • 简单的查询和参数绑定接口

  • 安全、自动类型数据访问

  • 隐式提交和回滚接口

  • 开发者友好的错误处理和调试

  • 文档完善

  • 通过广泛测试

纯 Swift 封装的 SQLite 框架:SQLite.swift

示例代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import SQLite
  
let db = Database( "path/to/db.sqlite3" )
  
db.execute(
     "CREATE TABLE users (" +
         "id INTEGER PRIMARY KEY, " +
         "email TEXT NOT NULL UNIQUE, " +
         "manager_id INTEGER, " +
         "FOREIGN KEY(manager_id) REFERENCES users(id)" +
     ")"
)
  
let stmt = db.prepare( "INSERT INTO users (email) VALUES (?)" )
for email in [ "alice@example.com" "betsy@example.com" ] {
     stmt.run(email)
}
  
db.totalChanges  // 2
db.lastChanges   // {Some 1}
db.lastID        // {Some 2}
  
for row in db.prepare( "SELECT id, email FROM users" ) {
     println(row)
     // [Optional(1), Optional("betsy@example.com")]
     // [Optional(2), Optional("alice@example.com")]
}
  
db.scalar( "SELECT count(*) FROM users" // {Some 2}
  
let jr = db.prepare( "INSERT INTO users (email, manager_id) VALUES (? ?)" )
db.transaction(
     stmt.run( "dolly@example.com" ),
     jr.run( "emery@example.com" , db.lastID)
)

安装

Note: SQLite.swift requires Swift 1.1 (available in Xcode 6.1).

To install SQLite.swift:

  1. Drag the SQLite.xcodeproj file into your own project. (Submodule, clone, or download the project first.)

    installation@2x.png

  2. In your target’s Build Phases, add SQLite iOS (or SQLite Mac) to the Target Dependencies build phase.

  3. Add the appropriate SQLite.framework product to theLink Binary With Libraries build phase.

  4. Add the same SQLite.framework to a Copy Files build phase with aFrameworks destination. (Add a new build phase if need be.)

项目主页:http://www.open-open.com/lib/view/home/1412900499530

https://github.com/stephencelis/SQLite.swift

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值