class Sequel::SQLite::Database

def execute(sql, opts={}, &block)

Run the given SQL with the given arguments and yield each row.
def execute(sql, opts={}, &block)
  _execute(:select, sql, opts, &block)
end