GRDB FTS5 关联表:建立、更新和查询
在 GRDB 中建立 FTS5 的关联表,可以按照以下步骤进行:
-
创建数据库连接:
let dbQueue = try DatabaseQueue(path: 'path/to/database.sqlite') -
定义数据模型:
struct MyModel: Codable, FetchableRecord, PersistableRecord { var id: Int64 var name: String } -
创建关联表:
try dbQueue.write { db in try db.create(virtualTable: 'myTable', using: FTS5()) { t in t.column('content') t.column('modelId').references('myModel') } } -
更新 FTS 表的数据:
try dbQueue.write { db in try db.execute(sql: 'INSERT INTO myTable (rowid, content, modelId) VALUES (?, ?, ?)', arguments: [1, 'Hello World', 1]) } -
查询 FTS 表的数据:
try dbQueue.read { db in let rows = try Row.fetchAll(db, 'SELECT * FROM myTable') for row in rows { let content: String = row['content'] let modelId: Int64 = row['modelId'] // 处理查询结果 } }
以上是在 GRDB 中建立 FTS5 的关联表、更新 FTS 表的数据和查询 FTS 表的数据的基本步骤。具体根据你的实际需求进行调整和补充。
原文地址: https://www.cveoy.top/t/topic/o2Fz 著作权归作者所有。请勿转载和采集!