Included Modules

Class Index [+]

Quicksearch

Sequel::TinyTDS::Dataset::PreparedStatementMethods

SQLite prepared statement uses a new prepared statement each time it is called, but it does use the bind arguments.

Private Instance Methods

execute(sql, opts={}, &block) click to toggle source

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
execute_dui(sql, opts={}, &block) click to toggle source

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
execute_insert(sql, opts={}, &block) click to toggle source

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.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.