我正在尝试实现示例中显示的代码。例如,当我将其放在app delegate中时:
import SQLite
let db = Database("path/to/db.sqlite3")
let users = db["users"]
let id = Expression<Int64>("id")
let name = Expression<String?>("name")
let email = Expression<String>("email")`
似乎工作正常。但是当我去使用create table code:
时db.create(table: users) { t in
t.column(id, primaryKey: true)
t.column(name)
t.column(email, unique: true)
}
它似乎不喜欢它。我的理解是表创建代码需要进入一个方法。但它属于哪种方法?或者一个新的方法?
很抱歉,问题似乎过于简单。我是Swift的新手,也是SQLite的新手。 : - )
答案 0 :(得分:1)
顶部块是正常的,因为您只是分配延迟加载的全局变量。
底部块实际上是在执行代码,必须在函数内部进行。这是一个示例结构:
import SQLite
struct User {
static let connection = Database()
static let table = connection["users"]
static let id = Expression<Int64>("id")
static let name = Expression<String?>("name")
static let email = Expression<String>("email")`
static func createTable() {
db.create(table: table) { t in
t.column(id, primaryKey: true)
t.column(name)
t.column(email, unique: true)
}
}
}
在其他地方(在另一个函数中),您可以调用User.createTable()
来创建表。