SQLite prepared statement uses a new prepared statement each time it is called, but it does use the bind arguments.
Run execute_select on the database with the given SQL and the stored bind arguments.
# File lib/sequel/adapters/sqlite.rb, line 316 def execute(sql, opts=OPTS, &block) super(sql, {:arguments=>bind_arguments}.merge(opts), &block) end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/sqlite.rb, line 321 def execute_dui(sql, opts=OPTS, &block) super(sql, {:arguments=>bind_arguments}.merge(opts), &block) end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/sqlite.rb, line 326 def execute_insert(sql, opts=OPTS, &block) super(sql, {:arguments=>bind_arguments}.merge(opts), &block) end