Module Sequel::Fdbsql::Dataset::PreparedStatementMethods
In: lib/sequel/adapters/fdbsql.rb

Allow use of server side prepared statements for FDBSQL using the pg driver.

Methods

call  

Included Modules

BindArgumentMethods

Public Instance methods

Raise a more obvious error if you attempt to call a unnamed prepared statement.

[Source]

     # File lib/sequel/adapters/fdbsql.rb, line 127
127:         def call(*)
128:           raise Error, "Cannot call prepared statement without a name" if prepared_statement_name.nil?
129:           super
130:         end

[Validate]