aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* Fix file permissionsTarmo Tänav2008-07-311-0/+0
* validates_uniqueness_of uses database case sensitivity support instead of usi...Tarmo Tänav2008-07-311-0/+4
* Fixed mysql change_column_default to not make the column always nullable.Tarmo Tänav2008-07-141-7/+26
* Ensure MysqlAdapter allows SSL connection when only sslca is supplied. [#253 ...Micah Wedemeyer2008-07-111-2/+5
* MySQL: treat integer with :limit => 11 as a display width, not byte size, for...Jeremy Kemper2008-06-271-5/+6
* Treat any limit > 4 as bigintJeremy Kemper2008-06-231-6/+8
* Always treat integer :limit as byte length. [#420 state:resolved]Tarmo Tänav2008-06-221-10/+11
* MySQL: rename_column preserves default values. [#466 state:resolved]Diego Algorta2008-06-221-1/+9
* Enable autoreconnect if available. Freeze constants.Jeremy Kemper2008-06-081-2/+7
* Give a more informative error message instead of just raising a load error wh...Jeremy Kemper2008-06-081-1/+8
* Don't append limit to primary key column definition. Freeze some constants.Jeremy Kemper2008-06-081-15/+19
* Remove vendor/mysql.rb. Deprecated in 2.1 stable, gone in 2.2.Jeremy Kemper2008-06-081-25/+4
* Added SQL escaping for :limit and :offset in MySQL [Jonathan Wiess]David Heinemeier Hansson2008-06-011-1/+2
* Merge docrails:Pratik Naik2008-05-091-12/+12
* Improve documentation coverage and markupXavier Noria2008-05-021-1/+1
* Default integer need not specify a limit [#20371 state:resolved] (matthuhiggins)David Heinemeier Hansson2008-04-291-1/+1
* Added that the MySQL adapter should map integer to either smallint, int, or b...David Heinemeier Hansson2008-04-251-0/+16
* Make the mysql schema dumper roundtrip the limits of text/blob columns. Clos...Michael Koziarski2008-03-021-0/+17
* MySQL: memoize column and table name quoting to reduce garbageJeremy Kemper2008-02-031-7/+8
* MySQL: omit text/blob defaults from the schema instead of using an empty stri...Jeremy Kemper2008-01-301-1/+1
* 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