Sha256: ccb5e9a33cea3fa57429811ca4c219016b89d20b05a50331d5d2ac45bd5414d1

Contents?: true

Size: 1.69 KB

Versions: 6

Compression:

Stored size: 1.69 KB

Contents

require 'active_record/connection_adapters/sqlite_adapter'
require 'sqlite3'

module ActiveRecord
  class Base
    # sqlite3 adapter reuses sqlite_connection.
    def self.sqlite3_connection(config) # :nodoc:
      # Require database.
      unless config[:database]
        raise ArgumentError, "No database file specified. Missing argument: database"
      end

      # Allow database path relative to Rails.root, but only if
      # the database path is not the special path that tells
      # Sqlite to build a database only in memory.
      if defined?(Rails.root) && ':memory:' != config[:database]
        config[:database] = File.expand_path(config[:database], Rails.root)
      end

      unless 'sqlite3' == config[:adapter]
        raise ArgumentError, 'adapter name should be "sqlite3"'
      end

      db = SQLite3::Database.new(
        config[:database],
        :results_as_hash => true
      )

      db.busy_timeout(config[:timeout]) if config[:timeout]

      ConnectionAdapters::SQLite3Adapter.new(db, logger, config)
    end
  end

  module ConnectionAdapters #:nodoc:
    class SQLite3Adapter < SQLiteAdapter # :nodoc:
      def quote(value, column = nil)
        if value.kind_of?(String) && column && column.type == :binary && column.class.respond_to?(:string_to_binary)
          s = column.class.string_to_binary(value).unpack("H*")[0]
          "x'#{s}'"
        else
          super
        end
      end

      # Returns the current database encoding format as a string, eg: 'UTF-8'
      def encoding
        if @connection.respond_to?(:encoding)
          @connection.encoding.to_s
        else
          @connection.execute('PRAGMA encoding')[0]['encoding']
        end
      end

    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
activerecord-3.1.0.rc5 lib/active_record/connection_adapters/sqlite3_adapter.rb
activerecord-3.1.0.rc4 lib/active_record/connection_adapters/sqlite3_adapter.rb
activerecord-3.1.0.rc3 lib/active_record/connection_adapters/sqlite3_adapter.rb
activerecord-3.1.0.rc2 lib/active_record/connection_adapters/sqlite3_adapter.rb
activerecord-3.1.0.rc1 lib/active_record/connection_adapters/sqlite3_adapter.rb
activerecord-3.1.0.beta1 lib/active_record/connection_adapters/sqlite3_adapter.rb