Instance Methodgrdb 7.4.0GRDB

appendInterpolation(identifier:)

Appends a quoted identifier.

SQLInterpolation+QueryInterface.swift:46
mutating func appendInterpolation(identifier: String)
// INSERT INTO "group" ...
let tableName = "group"
let request: SQLRequest<Player> = "INSERT INTO \(identifier: tableName) ..."