Sha256: 864b77c0684507f8ca1dd07d242d24c134e32abd6b94a995b5e6b36e94baa493
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
# frozen_string_literal: true module MiniSql class Connection def self.get(raw_connection, options = {}) if (defined? ::PG::Connection) && (PG::Connection === raw_connection) Postgres::Connection.new(raw_connection, options) elsif (defined? ::ArJdbc) Postgres::Connection.new(raw_connection, options) elsif (defined? ::SQLite3::Database) && (SQLite3::Database === raw_connection) Sqlite::Connection.new(raw_connection, options) else raise ArgumentError, 'unknown connection type!' end end # Returns a flat array containing all results. # Note, if selecting multiple columns array will be flattened # # @param sql [String] the query to run # @param params [Array or Hash], params to apply to query # @return [Object] a flat array containing all results def query_single(sql, *params) raise NotImplementedError, "must be implemented by child connection" end def query(sql, *params) raise NotImplementedError, "must be implemented by child connection" end def exec(sql, *params) raise NotImplementedError, "must be implemented by child connection" end def query_hash(sql, *params) raise NotImplementedError, "must be implemented by child connection" end def build(sql) Builder.new(self, sql) end def escape_string(str) raise NotImplementedError, "must be implemented by child connection" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mini_sql-0.2.2-java | lib/mini_sql/connection.rb |
mini_sql-0.2.2 | lib/mini_sql/connection.rb |