Class: ActiveRecord::ConnectionAdapters::SQLiteAdapter

Inherits:
AbstractAdapter show all
Defined in:
lib/active_record/connection_adapters/sqlite_adapter.rb

Overview

The SQLite adapter works with both the 2.x and 3.x series of SQLite with the sqlite-ruby drivers (available both as gems and from rubyforge.org/projects/sqlite-ruby/).

Options:

  • :database - Path to the database file.

Direct Known Subclasses

SQLite3Adapter

Defined Under Namespace

Classes: Version

Instance Attribute Summary

Attributes included from QueryCache

#query_cache, #query_cache_enabled

Instance Method Summary collapse

Methods inherited from AbstractAdapter

#active?, #create_savepoint, #current_savepoint_name, #decrement_open_transactions, #disable_referential_integrity, #ids_in_list_limit, #increment_open_transactions, #open_transactions, #prefetch_primary_key?, #quote_table_name, #raw_connection, #reconnect!, #release_savepoint, #reset!, #rollback_to_savepoint, #supports_savepoints?, #transaction_joinable=, #verify!

Methods included from QueryCache

#cache, #clear_query_cache, dirties_query_cache, included, #select_all, #uncached

Methods included from DatabaseLimits

#column_name_length, #columns_per_multicolumn_index, #columns_per_table, #in_clause_length, #index_name_length, #indexes_per_table, #joins_per_query, #sql_query_length, #table_alias_length, #table_name_length

Methods included from Quoting

#quote, #quote_table_name, #quoted_false, #quoted_true

Methods included from DatabaseStatements

#add_limit_offset!, #add_transaction_record, #case_sensitive_equality_operator, #default_sequence_name, #delete, #insert, #insert_fixture, #limited_update_conditions, #outside_transaction?, #reset_sequence!, #sanitize_limit, #select_all, #select_one, #select_value, #select_values, #transaction, #update

Methods included from SchemaStatements

#add_column_options!, #add_index, #add_timestamps, #assume_migrated_upto_version, #change_table, #column_exists?, #create_table, #distinct, #drop_table, #dump_schema_information, #index_exists?, #index_name, #index_name_exists?, #initialize_schema_migrations_table, #remove_index, #remove_timestamps, #rename_index, #structure_dump, #table_alias_for, #table_exists?, #type_to_sql

Constructor Details

#initialize(connection, logger, config) ⇒ SQLiteAdapter

Returns a new instance of SQLiteAdapter.



51
52
53
54
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 51

def initialize(connection, logger, config)
  super(connection, logger)
  @config = config
end

Instance Method Details

#adapter_nameObject

:nodoc:



56
57
58
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 56

def adapter_name #:nodoc:
  'SQLite'
end

#add_column(table_name, column_name, type, options = {}) ⇒ Object

:nodoc:



224
225
226
227
228
229
230
231
232
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 224

def add_column(table_name, column_name, type, options = {}) #:nodoc:
  if supports_add_column? && valid_alter_table_options( type, options )
    super(table_name, column_name, type, options)
  else
    alter_table(table_name) do |definition|
      definition.column(column_name, type, options)
    end
  end
end

#begin_db_transactionObject

:nodoc:



159
160
161
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 159

def begin_db_transaction #:nodoc:
  @connection.transaction
end

#change_column(table_name, column_name, type, options = {}) ⇒ Object

:nodoc:



259
260
261
262
263
264
265
266
267
268
269
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 259

def change_column(table_name, column_name, type, options = {}) #:nodoc:
  alter_table(table_name) do |definition|
    include_default = options_include_default?(options)
    definition[column_name].instance_eval do
      self.type    = type
      self.limit   = options[:limit] if options.include?(:limit)
      self.default = options[:default] if include_default
      self.null    = options[:null] if options.include?(:null)
    end
  end
end

#change_column_default(table_name, column_name, default) ⇒ Object

:nodoc:



244
245
246
247
248
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 244

def change_column_default(table_name, column_name, default) #:nodoc:
  alter_table(table_name) do |definition|
    definition[column_name].default = default
  end
end

#change_column_null(table_name, column_name, null, default = nil) ⇒ Object



250
251
252
253
254
255
256
257
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 250

def change_column_null(table_name, column_name, null, default = nil)
  unless null || default.nil?
    execute("UPDATE #{quote_table_name(table_name)} SET #{quote_column_name(column_name)}=#{quote(default)} WHERE #{quote_column_name(column_name)} IS NULL")
  end
  alter_table(table_name) do |definition|
    definition[column_name].null = null
  end
end

#columns(table_name, name = nil) ⇒ Object

:nodoc:



185
186
187
188
189
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 185

def columns(table_name, name = nil) #:nodoc:
  table_structure(table_name).map do |field|
    SQLiteColumn.new(field['name'], field['dflt_value'], field['type'], field['notnull'].to_i == 0)
  end
end

#commit_db_transactionObject

:nodoc:



163
164
165
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 163

def commit_db_transaction #:nodoc:
  @connection.commit
end

#delete_sql(sql, name = nil) ⇒ Object

:nodoc:



143
144
145
146
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 143

def delete_sql(sql, name = nil) #:nodoc:
  sql += " WHERE 1=1" unless sql =~ /WHERE/i
  super sql, name
end

#disconnect!Object



80
81
82
83
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 80

def disconnect!
  super
  @connection.close rescue nil
end

#empty_insert_statement_valueObject



278
279
280
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 278

def empty_insert_statement_value
  "VALUES(NULL)"
end

#execute(sql, name = nil) ⇒ Object

DATABASE STATEMENTS ======================================



134
135
136
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 134

def execute(sql, name = nil) #:nodoc:
  log(sql, name) { @connection.execute(sql) }
end

#indexes(table_name, name = nil) ⇒ Object

:nodoc:



191
192
193
194
195
196
197
198
199
200
201
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 191

def indexes(table_name, name = nil) #:nodoc:
  execute("PRAGMA index_list(#{quote_table_name(table_name)})", name).map do |row|
    IndexDefinition.new(
      table_name,
      row['name'],
      row['unique'].to_i != 0,
      execute("PRAGMA index_info('#{row['name']}')").map { |col|
        col['name']
      })
  end
end

#insert_sql(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil) ⇒ Object Also known as: create

:nodoc:



148
149
150
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 148

def insert_sql(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil) #:nodoc:
  super || @connection.last_insert_row_id
end

#native_database_typesObject

:nodoc:



93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 93

def native_database_types #:nodoc:
  {
    :primary_key => default_primary_key_type,
    :string      => { :name => "varchar", :limit => 255 },
    :text        => { :name => "text" },
    :integer     => { :name => "integer" },
    :float       => { :name => "float" },
    :decimal     => { :name => "decimal" },
    :datetime    => { :name => "datetime" },
    :timestamp   => { :name => "datetime" },
    :time        => { :name => "time" },
    :date        => { :name => "date" },
    :binary      => { :name => "blob" },
    :boolean     => { :name => "boolean" }
  }
end

#primary_key(table_name) ⇒ Object

:nodoc:



203
204
205
206
207
208
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 203

def primary_key(table_name) #:nodoc:
  column = table_structure(table_name).find { |field|
    field['pk'].to_i == 1
  }
  column && column['name']
end

#quote_column_name(name) ⇒ Object

:nodoc:



117
118
119
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 117

def quote_column_name(name) #:nodoc:
  %Q("#{name}")
end

#quote_string(s) ⇒ Object

QUOTING ==================================================



113
114
115
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 113

def quote_string(s) #:nodoc:
  @connection.class.quote(s)
end

#quoted_date(value) ⇒ Object

Quote date/time values for use in SQL input. Includes microseconds if the value is a Time responding to usec.



123
124
125
126
127
128
129
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 123

def quoted_date(value) #:nodoc:
  if value.acts_like?(:time) && value.respond_to?(:usec)
    "#{super}.#{sprintf("%06d", value.usec)}"
  else
    super
  end
end

#remove_column(table_name, *column_names) ⇒ Object Also known as: remove_columns

:nodoc:

Raises:

  • (ArgumentError)


234
235
236
237
238
239
240
241
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 234

def remove_column(table_name, *column_names) #:nodoc:
  raise ArgumentError.new("You must specify at least one column name.  Example: remove_column(:people, :first_name)") if column_names.empty?
  column_names.flatten.each do |column_name|
    alter_table(table_name) do |definition|
      definition.columns.delete(definition[column_name])
    end
  end
end

#remove_index!(table_name, index_name) ⇒ Object

:nodoc:



210
211
212
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 210

def remove_index!(table_name, index_name) #:nodoc:
  execute "DROP INDEX #{quote_column_name(index_name)}"
end

#rename_column(table_name, column_name, new_column_name) ⇒ Object

:nodoc:



271
272
273
274
275
276
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 271

def rename_column(table_name, column_name, new_column_name) #:nodoc:
  unless columns(table_name).detect{|c| c.name == column_name.to_s }
    raise ActiveRecord::ActiveRecordError, "Missing column #{table_name}.#{column_name}"
  end
  alter_table(table_name, :rename => {column_name.to_s => new_column_name.to_s})
end

#rename_table(name, new_name) ⇒ Object



214
215
216
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 214

def rename_table(name, new_name)
  execute "ALTER TABLE #{quote_table_name(name)} RENAME TO #{quote_table_name(new_name)}"
end

#requires_reloading?Boolean

Returns:

  • (Boolean)


72
73
74
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 72

def requires_reloading?
  true
end

#rollback_db_transactionObject

:nodoc:



167
168
169
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 167

def rollback_db_transaction #:nodoc:
  @connection.rollback
end

#select_rows(sql, name = nil) ⇒ Object



153
154
155
156
157
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 153

def select_rows(sql, name = nil)
  execute(sql, name).map do |row|
    (0...(row.size / 2)).map { |i| row[i] }
  end
end

#supports_add_column?Boolean

Returns:

  • (Boolean)


76
77
78
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 76

def supports_add_column?
  sqlite_version >= '3.1.6'
end

#supports_autoincrement?Boolean

:nodoc:

Returns:

  • (Boolean)


89
90
91
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 89

def supports_autoincrement? #:nodoc:
  sqlite_version >= '3.1.0'
end

#supports_count_distinct?Boolean

:nodoc:

Returns:

  • (Boolean)


85
86
87
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 85

def supports_count_distinct? #:nodoc:
  sqlite_version >= '3.2.6'
end

#supports_ddl_transactions?Boolean

Returns:

  • (Boolean)


60
61
62
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 60

def supports_ddl_transactions?
  sqlite_version >= '2.0.0'
end

#supports_migrations?Boolean

:nodoc:

Returns:

  • (Boolean)


64
65
66
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 64

def supports_migrations? #:nodoc:
  true
end

#supports_primary_key?Boolean

:nodoc:

Returns:

  • (Boolean)


68
69
70
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 68

def supports_primary_key? #:nodoc:
  true
end

#tables(name = nil) ⇒ Object

SCHEMA STATEMENTS ========================================



173
174
175
176
177
178
179
180
181
182
183
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 173

def tables(name = nil) #:nodoc:
  sql = <<-SQL
    SELECT name
    FROM sqlite_master
    WHERE type = 'table' AND NOT name = 'sqlite_sequence'
  SQL

  execute(sql, name).map do |row|
    row['name']
  end
end

#update_sql(sql, name = nil) ⇒ Object

:nodoc:



138
139
140
141
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 138

def update_sql(sql, name = nil) #:nodoc:
  super
  @connection.changes
end

#valid_alter_table_options(type, options) ⇒ Object

See: www.sqlite.org/lang_altertable.html SQLite has an additional restriction on the ALTER TABLE statement



220
221
222
# File 'lib/active_record/connection_adapters/sqlite_adapter.rb', line 220

def valid_alter_table_options( type, options)
  type.to_sym != :primary_key
end