Class: ActiveRecord::ConnectionAdapters::Mysql2Adapter
- Inherits:
-
AbstractAdapter
show all
- Defined in:
- activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb
Constant Summary
- ADAPTER_NAME =
'Mysql2'
- PRIMARY =
"PRIMARY"
- LOST_CONNECTION_ERROR_MESSAGES =
[
"Server shutdown in progress",
"Broken pipe",
"Lost connection to MySQL server during query",
"MySQL server has gone away" ]
- NATIVE_DATABASE_TYPES =
{
:primary_key => "int(11) DEFAULT NULL auto_increment PRIMARY KEY",
:string => { :name => "varchar", :limit => 255 },
:text => { :name => "text" },
:integer => { :name => "int", :limit => 4 },
:float => { :name => "float" },
:decimal => { :name => "decimal" },
:datetime => { :name => "datetime" },
:timestamp => { :name => "datetime" },
:time => { :name => "time" },
:date => { :name => "date" },
:binary => { :name => "blob" },
:boolean => { :name => "tinyint", :limit => 1 }
}
Instance Method Summary
(collapse)
-
- (Boolean) active?
CONNECTION MANAGEMENT ====================================.
-
- (Object) adapter_name
-
- (Object) add_column(table_name, column_name, type, options = {})
-
- (Object) add_column_position!(sql, options)
-
- (Object) add_limit_offset!(sql, options)
-
- (Object) begin_db_transaction
-
- (Object) case_sensitive_equality_operator
-
- (Object) change_column(table_name, column_name, type, options = {})
-
- (Object) change_column_default(table_name, column_name, default)
-
- (Object) change_column_null(table_name, column_name, null, default = nil)
-
- (Object) charset
Returns the database character set.
-
- (Object) collation
Returns the database collation strategy.
-
- (Object) columns(table_name, name = nil)
-
- (Object) commit_db_transaction
-
- (Object) create_database(name, options = {})
Create a new MySQL database with optional :charset and :collation.
-
- (Object) create_savepoint
-
- (Object) create_table(table_name, options = {})
-
- (Object) current_database
-
- (Object) disable_referential_integrity(&block)
REFERENTIAL INTEGRITY ====================================.
-
- (Object) disconnect!
-
- (Object) drop_database(name)
-
- (Object) drop_table(table_name, options = {})
-
- (Object) execute(sql, name = nil)
Executes the SQL statement in the context of this connection.
-
- (Object) indexes(table_name, name = nil)
-
- (Mysql2Adapter) initialize(connection, logger, connection_options, config)
constructor
A new instance of Mysql2Adapter.
-
- (Object) insert_sql(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil)
(also: #create)
-
- (Object) limited_update_conditions(where_sql, quoted_table_name, quoted_primary_key)
-
- (Object) native_database_types
-
- (Object) pk_and_sequence_for(table)
-
- (Object) primary_key(table)
Returns just a table's primary key.
-
- (Object) quote(value, column = nil)
QUOTING ==================================================.
-
- (Object) quote_column_name(name)
-
- (Object) quote_string(string)
-
- (Object) quote_table_name(name)
-
- (Object) quoted_false
-
- (Object) quoted_true
-
- (Object) reconnect!
-
- (Object) recreate_database(name, options = {})
-
- (Object) release_savepoint
-
- (Object) rename_column(table_name, column_name, new_column_name)
-
- (Object) rename_table(table_name, new_name)
-
- (Boolean) requires_reloading?
this is set to true in 2.3, but we don't want it to be.
-
- (Object) reset!
-
- (Object) rollback_db_transaction
-
- (Object) rollback_to_savepoint
-
- (Object) select_rows(sql, name = nil)
Returns an array of arrays containing the field values.
-
- (Object) show_variable(name)
-
- (Object) structure_dump
SCHEMA STATEMENTS ========================================.
-
- (Boolean) supports_migrations?
-
- (Boolean) supports_primary_key?
-
- (Boolean) supports_savepoints?
-
- (Object) tables(name = nil)
-
- (Object) type_to_sql(type, limit = nil, precision = nil, scale = nil)
Maps logical Rails types to MySQL-specific data types.
-
- (Object) update_sql(sql, name = nil)
#clear_cache!, #current_savepoint_name, #decrement_open_transactions, #increment_open_transactions, #open_transactions, #prefetch_primary_key?, #raw_connection, #substitute_for, #supports_bulk_alter?, #supports_count_distinct?, #supports_ddl_transactions?, #transaction_joinable=, #verify!
#run_callbacks
#append_features, extended, #included
Methods inherited from QueryCache
#call
#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
#add_column_options!, #add_index, #add_timestamps, #assume_migrated_upto_version, #change_table, #column_exists?, #distinct, #dump_schema_information, #index_exists?, #index_name, #index_name_exists?, #initialize_schema_migrations_table, #remove_column, #remove_index, #remove_index!, #remove_timestamps, #rename_index, #table_alias_for, #table_exists?
#add_transaction_record, #default_sequence_name, #delete, #empty_insert_statement_value, #exec_query, #insert, #insert_fixture, #outside_transaction?, #reset_sequence!, #select_all, #select_one, #select_value, #select_values, #supports_statement_cache?, #transaction, #update
Methods included from Quoting
#quoted_date
Constructor Details
- (Mysql2Adapter) initialize(connection, logger, connection_options, config)
A new instance of Mysql2Adapter
123
124
125
126
127
128
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 123
def initialize(connection, logger, connection_options, config)
super(connection, logger)
@connection_options, @config = connection_options, config
@quoted_column_names, @quoted_table_names = {}, {}
configure_connection
end
|
Instance Method Details
- (Boolean) active?
CONNECTION MANAGEMENT ====================================
198
199
200
201
202
203
204
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 198
def active?
return false unless @connection
@connection.query 'select 1'
true
rescue Mysql2::Error
false
end
|
- (Object) adapter_name
130
131
132
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 130
def adapter_name
ADAPTER_NAME
end
|
- (Object) add_column(table_name, column_name, type, options = {})
436
437
438
439
440
441
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 436
def add_column(table_name, column_name, type, options = {})
add_column_sql = "ALTER TABLE #{quote_table_name(table_name)} ADD #{quote_column_name(column_name)} #{type_to_sql(type, options[:limit], options[:precision], options[:scale])}"
add_column_options!(add_column_sql, options)
add_column_position!(add_column_sql, options)
execute(add_column_sql)
end
|
- (Object) add_column_position!(sql, options)
503
504
505
506
507
508
509
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 503
def add_column_position!(sql, options)
if options[:first]
sql << " FIRST"
elsif options[:after]
sql << " AFTER #{quote_column_name(options[:after])}"
end
end
|
- (Object) add_limit_offset!(sql, options)
323
324
325
326
327
328
329
330
331
332
333
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 323
def add_limit_offset!(sql, options)
limit, offset = options[:limit], options[:offset]
if limit && offset
sql << " LIMIT #{offset.to_i}, #{sanitize_limit(limit)}"
elsif limit
sql << " LIMIT #{sanitize_limit(limit)}"
elsif offset
sql << " OFFSET #{offset.to_i}"
end
sql
end
|
- (Object) begin_db_transaction
293
294
295
296
297
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 293
def begin_db_transaction
execute "BEGIN"
rescue Exception
end
|
- (Object) case_sensitive_equality_operator
531
532
533
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 531
def case_sensitive_equality_operator
"= BINARY"
end
|
- (Object) change_column(table_name, column_name, type, options = {})
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 458
def change_column(table_name, column_name, type, options = {})
column = column_for(table_name, column_name)
unless options_include_default?(options)
options[:default] = column.default
end
unless options.has_key?(:null)
options[:null] = column.null
end
change_column_sql = "ALTER TABLE #{quote_table_name(table_name)} CHANGE #{quote_column_name(column_name)} #{quote_column_name(column_name)} #{type_to_sql(type, options[:limit], options[:precision], options[:scale])}"
add_column_options!(change_column_sql, options)
add_column_position!(change_column_sql, options)
execute(change_column_sql)
end
|
- (Object) change_column_default(table_name, column_name, default)
443
444
445
446
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 443
def change_column_default(table_name, column_name, default)
column = column_for(table_name, column_name)
change_column table_name, column_name, column.sql_type, :default => default
end
|
- (Object) change_column_null(table_name, column_name, null, default = nil)
448
449
450
451
452
453
454
455
456
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 448
def change_column_null(table_name, column_name, null, default = nil)
column = column_for(table_name, column_name)
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
change_column table_name, column_name, column.sql_type, :null => null
end
|
Returns the database character set.
380
381
382
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 380
def charset
show_variable 'character_set_database'
end
|
- (Object) collation
Returns the database collation strategy.
385
386
387
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 385
def collation
show_variable 'collation_database'
end
|
- (Object) columns(table_name, name = nil)
418
419
420
421
422
423
424
425
426
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 418
def columns(table_name, name = nil)
sql = "SHOW FIELDS FROM #{quote_table_name(table_name)}"
columns = []
result = execute(sql, :skip_logging)
result.each(:symbolize_keys => true, :as => :hash) { |field|
columns << Mysql2Column.new(field[:Field], field[:Default], field[:Type], field[:Null] == "YES")
}
columns
end
|
- (Object) commit_db_transaction
299
300
301
302
303
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 299
def commit_db_transaction
execute "COMMIT"
rescue Exception
end
|
- (Object) create_database(name, options = {})
Create a new MySQL database with optional :charset and
:collation. Charset defaults to utf8.
Example:
create_database 'charset_test', :charset => 'latin1', :collation => 'latin1_bin'
create_database 'matt_development'
create_database 'matt_development', :charset => :big5
363
364
365
366
367
368
369
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 363
def create_database(name, options = {})
if options[:collation]
execute "CREATE DATABASE `#{name}` DEFAULT CHARACTER SET `#{options[:charset] || 'utf8'}` COLLATE `#{options[:collation]}`"
else
execute "CREATE DATABASE `#{name}` DEFAULT CHARACTER SET `#{options[:charset] || 'utf8'}`"
end
end
|
- (Object) create_savepoint
311
312
313
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 311
def create_savepoint
execute("SAVEPOINT #{current_savepoint_name}")
end
|
- (Object) create_table(table_name, options = {})
428
429
430
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 428
def create_table(table_name, options = {})
super(table_name, options.reverse_merge(:options => "ENGINE=InnoDB"))
end
|
- (Object) current_database
375
376
377
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 375
def current_database
select_value 'SELECT DATABASE() as db'
end
|
- (Object) disable_referential_integrity(&block)
REFERENTIAL INTEGRITY ====================================
185
186
187
188
189
190
191
192
193
194
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 185
def disable_referential_integrity(&block) old = select_value("SELECT @@FOREIGN_KEY_CHECKS")
begin
update("SET FOREIGN_KEY_CHECKS = 0")
yield
ensure
update("SET FOREIGN_KEY_CHECKS = #{old}")
end
end
|
- (Object) disconnect!
216
217
218
219
220
221
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 216
def disconnect!
unless @connection.nil?
@connection.close
@connection = nil
end
end
|
- (Object) drop_database(name)
371
372
373
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 371
def drop_database(name) execute "DROP DATABASE IF EXISTS `#{name}`"
end
|
- (Object) drop_table(table_name, options = {})
397
398
399
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 397
def drop_table(table_name, options = {})
super(table_name, options)
end
|
- (Object) execute(sql, name = nil)
Executes the SQL statement in the context of this connection.
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 265
def execute(sql, name = nil)
@connection.query_options[:database_timezone] = ActiveRecord::Base.default_timezone
if name == :skip_logging
@connection.query(sql)
else
log(sql, name) { @connection.query(sql) }
end
rescue ActiveRecord::StatementInvalid => exception
if exception.message.split(":").first =~ /Packets out of order/
raise ActiveRecord::StatementInvalid, "'Packets out of order' error was received from the database. Please update your mysql bindings (gem install mysql) and read http://dev.mysql.com/doc/mysql/en/password-hashing.html for more information. If you're on Windows, use the Instant Rails installer to get the updated mysql bindings."
else
raise
end
end
|
- (Object) indexes(table_name, name = nil)
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 401
def indexes(table_name, name = nil)
indexes = []
current_index = nil
result = execute("SHOW KEYS FROM #{quote_table_name(table_name)}", name)
result.each(:symbolize_keys => true, :as => :hash) do |row|
if current_index != row[:Key_name]
next if row[:Key_name] == PRIMARY current_index = row[:Key_name]
indexes << Mysql2IndexDefinition.new(row[:Table], row[:Key_name], row[:Non_unique] == 0, [], [])
end
indexes.last.columns << row[:Column_name]
indexes.last.lengths << row[:Sub_part]
end
indexes
end
|
- (Object) insert_sql(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil)
Also known as:
create
282
283
284
285
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 282
def insert_sql(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil)
super
id_value || @connection.last_id
end
|
- (Object) limited_update_conditions(where_sql, quoted_table_name, quoted_primary_key)
535
536
537
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 535
def limited_update_conditions(where_sql, quoted_table_name, quoted_primary_key)
where_sql
end
|
- (Object) native_database_types
146
147
148
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 146
def native_database_types
NATIVE_DATABASE_TYPES
end
|
- (Object) pk_and_sequence_for(table)
516
517
518
519
520
521
522
523
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 516
def pk_and_sequence_for(table)
keys = []
result = execute("describe #{quote_table_name(table)}")
result.each(:symbolize_keys => true, :as => :hash) do |row|
keys << row[:Field] if row[:Key] == "PRI"
end
keys.length == 1 ? [keys.first, nil] : nil
end
|
- (Object) primary_key(table)
Returns just a table's primary key
526
527
528
529
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 526
def primary_key(table)
pk_and_sequence = pk_and_sequence_for(table)
pk_and_sequence && pk_and_sequence.first
end
|
- (Object) quote(value, column = nil)
QUOTING ==================================================
152
153
154
155
156
157
158
159
160
161
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 152
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}'"
elsif value.kind_of?(BigDecimal)
value.to_s("F")
else
super
end
end
|
- (Object) quote_column_name(name)
163
164
165
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 163
def quote_column_name(name) @quoted_column_names[name] ||= "`#{name}`"
end
|
- (Object) quote_string(string)
171
172
173
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 171
def quote_string(string)
@connection.escape(string)
end
|
- (Object) quote_table_name(name)
167
168
169
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 167
def quote_table_name(name) @quoted_table_names[name] ||= quote_column_name(name).gsub('.', '`.`')
end
|
- (Object) quoted_false
179
180
181
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 179
def quoted_false
QUOTED_FALSE
end
|
- (Object) quoted_true
175
176
177
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 175
def quoted_true
QUOTED_TRUE
end
|
- (Object) reconnect!
206
207
208
209
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 206
def reconnect!
disconnect!
connect
end
|
- (Object) recreate_database(name, options = {})
351
352
353
354
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 351
def recreate_database(name, options = {})
drop_database(name)
create_database(name, options)
end
|
- (Object) release_savepoint
319
320
321
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 319
def release_savepoint
execute("RELEASE SAVEPOINT #{current_savepoint_name}")
end
|
- (Object) rename_column(table_name, column_name, new_column_name)
475
476
477
478
479
480
481
482
483
484
485
486
487
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 475
def rename_column(table_name, column_name, new_column_name)
options = {}
if column = columns(table_name).find { |c| c.name == column_name.to_s }
options[:default] = column.default
options[:null] = column.null
else
raise ActiveRecordError, "No such column: #{table_name}.#{column_name}"
end
current_type = select_one("SHOW COLUMNS FROM #{quote_table_name(table_name)} LIKE '#{column_name}'")["Type"]
rename_column_sql = "ALTER TABLE #{quote_table_name(table_name)} CHANGE #{quote_column_name(column_name)} #{quote_column_name(new_column_name)} #{current_type}"
add_column_options!(rename_column_sql, options)
execute(rename_column_sql)
end
|
- (Object) rename_table(table_name, new_name)
432
433
434
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 432
def rename_table(table_name, new_name)
execute "RENAME TABLE #{quote_table_name(table_name)} TO #{quote_table_name(new_name)}"
end
|
- (Boolean) requires_reloading?
this is set to true in 2.3, but we don't want it to be
212
213
214
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 212
def requires_reloading?
false
end
|
223
224
225
226
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 223
def reset!
disconnect!
connect
end
|
- (Object) rollback_db_transaction
305
306
307
308
309
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 305
def rollback_db_transaction
execute "ROLLBACK"
rescue Exception
end
|
- (Object) rollback_to_savepoint
315
316
317
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 315
def rollback_to_savepoint
execute("ROLLBACK TO SAVEPOINT #{current_savepoint_name}")
end
|
- (Object) select_rows(sql, name = nil)
Returns an array of arrays containing the field values. Order is the same
as that returned by columns.
260
261
262
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 260
def select_rows(sql, name = nil)
execute(sql, name).to_a
end
|
- (Object) show_variable(name)
511
512
513
514
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 511
def show_variable(name)
variables = select_all("SHOW VARIABLES LIKE '#{name}'")
variables.first['Value'] unless variables.empty?
end
|
- (Object) structure_dump
SCHEMA STATEMENTS ========================================
338
339
340
341
342
343
344
345
346
347
348
349
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 338
def structure_dump
if supports_views?
sql = "SHOW FULL TABLES WHERE Table_type = 'BASE TABLE'"
else
sql = "SHOW TABLES"
end
select_all(sql).inject("") do |structure, table|
table.delete('Table_type')
structure += select_one("SHOW CREATE TABLE #{quote_table_name(table.to_a.first.last)}")["Create Table"] + ";\n\n"
end
end
|
- (Boolean) supports_migrations?
134
135
136
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 134
def supports_migrations?
true
end
|
- (Boolean) supports_primary_key?
138
139
140
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 138
def supports_primary_key?
true
end
|
- (Boolean) supports_savepoints?
142
143
144
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 142
def supports_savepoints?
true
end
|
- (Object) tables(name = nil)
389
390
391
392
393
394
395
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 389
def tables(name = nil)
tables = []
execute("SHOW TABLES", name).each do |field|
tables << field.first
end
tables
end
|
- (Object) type_to_sql(type, limit = nil, precision = nil, scale = nil)
Maps logical Rails types to MySQL-specific data types.
490
491
492
493
494
495
496
497
498
499
500
501
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 490
def type_to_sql(type, limit = nil, precision = nil, scale = nil)
return super unless type.to_s == 'integer'
case limit
when 1; 'tinyint'
when 2; 'smallint'
when 3; 'mediumint'
when nil, 4, 11; 'int(11)' when 5..8; 'bigint'
else raise(ActiveRecordError, "No integer type has byte size #{limit}")
end
end
|
- (Object) update_sql(sql, name = nil)
288
289
290
291
|
# File 'activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb', line 288
def update_sql(sql, name = nil)
super
@connection.affected_rows
end
|