# File lib/jdbc_adapter/jdbc_postgre.rb, line 350 def _execute(sql, name = nil) case sql.strip when /\A\(?\s*(select|show)/i then @connection.execute_query(sql) else @connection.execute_update(sql) end end