Instance Methodgrdb 7.3.0GRDB
finalize(_:statement:to:)
DebugDumpFormat.swift:91mutating func finalize(_ db: Database, statement: Statement, to stream: inout DumpStream)
mutating func finalize(_ db: Database, statement: Statement, to stream: inout DumpStream)
s4GRDB15DebugDumpFormatV8finalize_9statement2toyAA8DatabaseC_AA9StatementCAA0C6StreamVztF
What are these?8ZAAO
import GRDB
A toolkit for SQLite databases, with a focus on application development
struct DebugDumpFormat
A format that prints one line per database row, suitable for debugging.
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 = "|", nullValue: String = "")
Creates a DebugDumpFormat
.
var header: Bool
A boolean value indicating if column labels are printed as the first line of output.
var nullValue: String
The string to print for NULL values.
var separator: String
The separator between values.
mutating func writeRow(_ db: Database, statement: Statement, to stream: inout DumpStream)