aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* adds missing requires for Object#blank? and Object#present?Xavier Noria2010-03-281-0/+1
* Revert "primary_key now supports :limit for MySQL". Break Sam Ruby app.José Valim2010-03-271-16/+10
* primary_key now supports :limit for MySQLRizwan Reza2010-03-271-10/+16
* Revert "primary_key now supports :limit. [#876 state:resolved]" since it brok...José Valim2010-03-271-16/+10
* primary_key now supports :limit. [#876 state:resolved]Rizwan Reza2010-03-271-10/+16
* Better MySQL Error message. [#3775 state:resolved]Rizwan Reza2010-03-261-1/+1
* Add add_limit_offset! to adapters.Emilio Tagua2010-03-251-0/+12
* Silenced "SHOW FIELDS" and "SET SQL_AUTO_IS_NULL=0" statements from the MySQL...David Heinemeier Hansson2010-02-061-4/+8
* Expose connections available in the connection pool.José Valim2010-01-111-0/+2
* Add support for Mysql column positioning via #add_column and #change_columnBen Marini2009-12-031-0/+15
* Merge commit 'rails/master'Emilio Tagua2009-09-211-1/+4
|\
| * Enable use of MySQL stored procedures by default.Justin Bailey2009-09-171-1/+4
* | Merge commit 'rails/master'Emilio Tagua2009-09-141-1/+2
|\|
| * Ruby 1.9 compat: corrected instance_methods checksdsykes2009-09-131-1/+2
* | Merge commit 'rails/master'Emilio Tagua2009-08-101-8/+17
|\|
| * 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
* | Merge commit 'rails/master'Emilio Tagua2009-06-301-0/+13
|\|
| * 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
* | Removed unused methods.Emilio Tagua2009-06-231-12/+0
* | Refactors to work with latest Arel implementation.Emilio Tagua2009-06-021-0/+1
* | Merge commit 'rails/master'Emilio Tagua2009-05-181-0/+1
|\|
| * Cherry-pick core extensionsJeremy Kemper2009-05-131-0/+1
* | construct_finder_sql now use ArelEmilio Tagua2009-04-241-1/+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