Methods to add to the JDBC adapter/connection to allow it to work with the shared PostgreSQL code.
Give the JDBC adapter a direct execute method, which creates a statement with the given sql and executes it.
# File lib/sequel/adapters/jdbc/postgresql.rb, line 17 def execute(sql, args=nil) method = block_given? ? :executeQuery : :execute stmt = createStatement begin rows = @db.log_yield(sql){stmt.send(method, sql)} yield(rows) if block_given? rescue NativeException => e raise_error(e) ensure stmt.close end end
Generated with the Darkfish Rdoc Generator 2.