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/tinytds.rb, line 187 187: def execute(sql, opts={}, &block) 188: super(prepared_sql, {:arguments=>bind_arguments}.merge(opts), &block) 189: end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/tinytds.rb, line 192 192: def execute_dui(sql, opts={}, &block) 193: super(prepared_sql, {:arguments=>bind_arguments}.merge(opts), &block) 194: end
Same as execute, explicit due to intricacies of alias and super.
# File lib/sequel/adapters/tinytds.rb, line 197 197: def execute_insert(sql, opts={}, &block) 198: super(prepared_sql, {:arguments=>bind_arguments}.merge(opts), &block) 199: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.