Instance Methodgrdb 7.3.0GRDB
finalize(_:statement:to:)
QuoteDumpFormat.swift:81mutating func finalize(_ db: Database, statement: Statement, to stream: inout DumpStream)
mutating func finalize(_ db: Database, statement: Statement, to stream: inout DumpStream)
s4GRDB15QuoteDumpFormatV8finalize_9statement2toyAA8DatabaseC_AA9StatementCAA0C6StreamVztF
What are these?W5N5
import GRDB
A toolkit for SQLite databases, with a focus on application development
struct QuoteDumpFormat
A format that prints one line per database row, formatting values as SQL literals.
final class Database
An SQLite connection.
final class Statement
A prepared statement.
struct DumpStream
A text output stream suited for printing database content.
init(header: Bool = false, separator: String = ",")
Creates a QuoteDumpFormat
.
var header: Bool
A boolean value indicating if column labels are printed as the first line of output.
var separator: String
The separator between values.
mutating func writeRow(_ db: Database, statement: Statement, to stream: inout DumpStream)