Vapor 连接到 SQLite 数据库
Vapor connect to SQLite Database
我正在尝试使用 SQLite 设置 Vapor 3 项目。
在 configure.swift
文件中,我有以下与 sqlite 相关的设置:
try services.register(FluentSQLiteProvider())
...
// Get the root directory of the project
// I have verified that the file is present at this path
let path = DirectoryConfig.detect().workDir + "db_name.db"
let sqlite: SQLiteDatabase
do {
sqlite = try SQLiteDatabase(storage: .file(path: path))
print("connected") // called
} catch {
print(error) // not called
return
}
var databases = DatabasesConfig()
databases.add(database: sqlite, as: .sqlite)
services.register(databases)
在数据库中,我有一个名为 posts
的 table,我想查询它 return 所有条目来自:
这是Post
里面的实现 /Sources/App/Models/:
final class Post: Content {
var id: Int?
var title: String
var body: String
init(id: Int? = nil, title: String, body: String) {
self.id = id
self.title = title
self.body = body
}
}
extension Post: SQLiteModel, Migration, Parameter { }
我也在configure.swift
中添加了迁移:
var migrations = MigrationConfig()
migrations.add(model: Post.self, database: .sqlite)
services.register(migrations)
在routes.swift
中,我定义posts
路由如下:
router.get("posts") { req in
return Post.query(on: req).all()
}
现在,当调用 localhost:8080/posts
时,我得到:
[]
我没有正确连接数据库吗?
我错过了什么吗?
似乎由 fluent 生成的 table 名称与您的数据库 table 名称不同,因为 Fluent 生成的 table 名称与 Model
class 名字。在你的情况下 Post
.
在模型中添加静态 属性 entity
class Post
以定义自定义 table 名称。
像这样:
public static var entity: String {
return "posts"
}
我正在尝试使用 SQLite 设置 Vapor 3 项目。
在 configure.swift
文件中,我有以下与 sqlite 相关的设置:
try services.register(FluentSQLiteProvider())
...
// Get the root directory of the project
// I have verified that the file is present at this path
let path = DirectoryConfig.detect().workDir + "db_name.db"
let sqlite: SQLiteDatabase
do {
sqlite = try SQLiteDatabase(storage: .file(path: path))
print("connected") // called
} catch {
print(error) // not called
return
}
var databases = DatabasesConfig()
databases.add(database: sqlite, as: .sqlite)
services.register(databases)
在数据库中,我有一个名为 posts
的 table,我想查询它 return 所有条目来自:
这是Post
里面的实现 /Sources/App/Models/:
final class Post: Content {
var id: Int?
var title: String
var body: String
init(id: Int? = nil, title: String, body: String) {
self.id = id
self.title = title
self.body = body
}
}
extension Post: SQLiteModel, Migration, Parameter { }
我也在configure.swift
中添加了迁移:
var migrations = MigrationConfig()
migrations.add(model: Post.self, database: .sqlite)
services.register(migrations)
在routes.swift
中,我定义posts
路由如下:
router.get("posts") { req in
return Post.query(on: req).all()
}
现在,当调用 localhost:8080/posts
时,我得到:
[]
我没有正确连接数据库吗?
我错过了什么吗?
似乎由 fluent 生成的 table 名称与您的数据库 table 名称不同,因为 Fluent 生成的 table 名称与 Model
class 名字。在你的情况下 Post
.
在模型中添加静态 属性 entity
class Post
以定义自定义 table 名称。
像这样:
public static var entity: String {
return "posts"
}