StatementCursor

public final class StatementCursor: Cursor

A cursor that iterates a database statement without producing any value. For example:

try dbQueue.read { db in
    let statement = db.makeSelectStatement("SELECT * FROM player")
    let cursor: StatementCursor = statement.cursor()
}