aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* Enable use of MySQL stored procedures by default.Justin Bailey2009-09-171-1/+4
* Ruby 1.9 compat: corrected instance_methods checksdsykes2009-09-131-1/+2
* raises exception (ActiveRecord::ConfigurationError with message) on habtm ass...Jaime Bellmyer2009-08-091-0/+10
* AR should respect default values for MySQL BINARY and VARBINARY columns.Jatinder Singh2009-08-091-2/+2
* No longer require database name for MySQL to allow cross database selects.Tristan Dunn2009-08-091-6/+1
* Allow connect_timeout, read_timeout and write_timeout settings for MySQL [#25...Matt Conway2009-08-091-0/+4
* Make sure the wrapped exceptions also have the original exception available.Michael Koziarski2009-06-261-2/+2
* Translate foreign key violations to ActiveRecord::InvalidForeignKey exceptions.Michael Schuerig2009-06-261-0/+2
* Translate adapter errors that indicate a violated uniqueness constraint to Ac...Michael Schuerig2009-06-261-0/+11
* Cherry-pick core extensionsJeremy Kemper2009-05-131-0/+1
* Mysql#reconnect is set according to the 'reconnect' key in the connection spec.Dov Murik2009-01-271-2/+5
* Merge branch 'master' into savepointsJeremy Kemper2009-01-101-15/+26
|\
| * Inline code comments for class_eval/module_eval [#1657 state:resolved]Xavier Noria2008-12-281-11/+13
| * Free MySQL::Result objects after a call to execute [#1416 state:resolved]Manfred Stienstra2008-12-181-4/+13
* | Merge commit 'origin/master' into savepointsHongli Lai (Phusion)2008-12-091-6/+9
|\|
| * Merge with docrailsPratik Naik2008-12-071-6/+9
| * Revert commit which breaks all the tests.Michael Koziarski2008-11-071-8/+4
| * Stop logging SHOW FIELDS and SET SQL_AUTO_IS_NULL=0 for the MysqlAdapter as t...David Heinemeier Hansson2008-11-061-4/+8
* | Make SQLite3 pass the unit tests for savepoints.Hongli Lai (Phusion)2008-11-031-0/+4
* | Implement savepoints.Jonathan Viney2008-11-031-0/+11
|/
* don't quote decimal values for mysql. It doesn't make sense and breaks in new...Aliaksey Kandratsenka2008-10-041-1/+1
* Make sure recreate MySQL test database with the proper encoding and collation...Luca Guidi2008-10-031-2/+2
* Deal with MySQL's quirky handling of defaults and blob/text columnsFrederick Cheung2008-09-141-1/+6
* Support :limit on update_all so that has_many with :limit can be safely updatedTarmo Tänav2008-09-101-0/+4
* Remove flawed execute("ROLLBACK") approach; #reset! defaults to nothingNick Sieger2008-09-041-2/+0
* Remove CachedConnectionPerThread per-thread pooling mechanism in favor of a f...Nick Sieger2008-08-291-0/+5
* Add connection reset and verification upon each connection checkoutNick Sieger2008-08-291-0/+9
* 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