aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* Foxy fixtures. Adapter#disable_referential_integrity. Closes #9981.Jeremy Kemper2007-10-261-0/+12
* Remove superfluous code and quote table name. References #9971 [jkit, nzkoz]Michael Koziarski2007-10-251-2/+1
* Make sure that the Schema Dumper supports non-standard primary keys with MySQ...Michael Koziarski2007-10-251-0/+10
* Ensure that mysql quotes table names with database names correctly. Closes #...Rick Olson2007-10-201-1/+1
* Quote table names. Defaults to column quoting. Closes #4593.Jeremy Kemper2007-10-161-12/+20
* MySQL: fix change_column on not-null columns that don't accept dfeault values...Jeremy Kemper2007-10-081-2/+2
* Use fast date/time parsing by default. Closes #9811.Jeremy Kemper2007-10-071-29/+0
* Reinstate failsafe date/time parsing rescues. Head off some obvious failures ...Jeremy Kemper2007-10-071-18/+16
* MySQL: speedup date/time parsing.Jeremy Kemper2007-10-071-0/+30
* Ruby 1.9 compat for instance method check in Mysql adapter.Jeremy Kemper2007-09-291-1/+2
* MySQL: change_column raises if the table or column doesn't exist.Jeremy Kemper2007-09-281-1/+5
* Stress that you should really install the C-based MySQL library when running ...David Heinemeier Hansson2007-09-201-0/+5
* Speed up and simplify query caching.Jeremy Kemper2007-09-171-4/+4
* connection.select_rows 'sql' returns an array (rows) of arrays (field values)...Jeremy Kemper2007-09-161-0/+9
* Work around mysql limitations for defaults on text columns with not null. Cl...Michael Koziarski2007-09-041-0/+1
* MySQL: fix show_variable. Closes #8448.Jeremy Kemper2007-06-201-1/+2
* SQLite, MySQL, PostgreSQL, Oracle: quote column names in column migration SQL...Jeremy Kemper2007-05-291-3/+3
* MySQL: create_database takes :charset and :collation options. Charset default...Jeremy Kemper2007-05-261-9/+35
* Add documentation for :encoding option to mysql adapter. Closes #8219 [marclove]Marcel Molina2007-05-061-0/+1
* MySQL: blob and text columns may not have defaults in 5.x. Update fixtures sc...Jeremy Kemper2007-01-281-4/+10
* MySQL: SET SQL_AUTO_IS_NULL=0 so 'where id is null' doesn't select the last i...Jeremy Kemper2007-01-281-0/+4
* Nodoc the irrelevant (from 1.2)David Heinemeier Hansson2007-01-261-3/+3
* change_column accepts :default => nil. Closes #6956.Jeremy Kemper2007-01-151-2/+2
* MySQL, PostgreSQL: change_column_default quotes the default value and doesn't...Jeremy Kemper2007-01-151-1/+1
* MySQL: retain SSL settings on reconnect. Closes #6976.Jeremy Kemper2007-01-141-0/+1
* Test for forged '' default before it's typecast. Closes #6156.Jeremy Kemper2006-11-201-2/+3
* MySQL: detect when a NOT NULL column without a default value is misreported a...Jeremy Kemper2006-11-201-0/+19
* Mysql::Result#all_hashes compatibility with Mysql C driver 2.6.x. Closes #6601.Jeremy Kemper2006-11-161-20/+22
* Oracle: resolve test failures, use prefetched primary key for inserts, check ...Jeremy Kemper2006-11-011-13/+1
* MySQL: all_hashes compatibility with old MysqlRes class. Closes #6429.Jeremy Kemper2006-10-201-4/+10
* MySQL: introduce Mysql::Result#all_hashes to support further optimization. Cl...Jeremy Kemper2006-10-021-10/+41
* r4704@asus: jeremy | 2006-06-27 12:00:19 -0700Jeremy Kemper2006-07-081-1/+4
* Preserve MySQL boolean column defaults when changing a column in a migration....Marcel Molina2006-05-141-1/+3
* Properly quote index names in migrations (closes #4764) [John Long]Rick Olson2006-04-201-1/+0
* Only string_to_binary if the column respondsDavid Heinemeier Hansson2006-03-261-1/+1
* Fixed that MySQL enums should always be returned as strings (closes #3501) [DHH]David Heinemeier Hansson2006-03-251-0/+1
* Added connection#current_database that'll return of the current database (onl...David Heinemeier Hansson2006-03-181-0/+3
* Make all tinyint(1) variants act like boolean in mysql (tinyint(1) unsigned, ...Jamis Buck2006-03-171-1/+1
* Stop the MySQL adapter crashing when views are present. (closes #3782) [Jonat...David Heinemeier Hansson2006-03-161-1/+16
* ActiveRecord::Base.remove_connection explicitly closes database connections a...Jeremy Kemper2006-02-261-1/+5
* Escape database name in MySQL adapter when creating and dropping databases. C...Marcel Molina2006-01-131-2/+2
* MySQL: allow encoding option for mysql.rb driver.Jeremy Kemper2005-12-131-5/+1
* MySQL: ensure that @config is set.Jeremy Kemper2005-12-091-3/+2
* MySQL: more robust test for nullified result hashes. References #3124.Jeremy Kemper2005-12-081-8/+2
* MySQL: work around ruby-mysql/mysql-ruby inconsistency with mysql.stat. Elim...Jeremy Kemper2005-12-031-7/+9
* MySQL: active? compatibility with the pure-Ruby driver. References #428.Jeremy Kemper2005-11-281-1/+5
* MySQL, PostgreSQL: reconnect! also reconfigures the connection. Otherwise, t...Jeremy Kemper2005-11-221-15/+19
* MySQL: introduce :encoding option to specify the character set for client, co...Jeremy Kemper2005-11-211-3/+23
* Simpler Mysql load test.Jeremy Kemper2005-11-211-2/+2
* r3042@asus: jeremy | 2005-11-13 01:51:08 -0800Jeremy Kemper2005-11-131-15/+22