Sha256: 9679a8b791f773c9b0b41831347c1f6865de6c552c7dd5ec14a0263392198156
Contents?: true
Size: 1.37 KB
Versions: 1
Compression:
Stored size: 1.37 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? ::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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mini_sql-0.2.1 | lib/mini_sql/connection.rb |