Allow use of server side prepared statements for PostgreSQL using the pg driver.
Included modules
Public Instance methods
call
(*)
Raise a more obvious error if you attempt to call a unnamed prepared statement.
[show source]
# File lib/sequel/adapters/postgres.rb, line 711 def call(*) raise Error, "Cannot call prepared statement without a name" if prepared_statement_name.nil? super end