aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* MySQL: Check error number instead of a messageyuuji.yaginuma2019-07-111-1/+3
* Add database_exists? method to connection adaptersGuilherme Mansur2019-06-171-0/+6
* Enable `Layout/EmptyLinesAroundAccessModifier` copRyuta Kamizono2019-06-131-1/+0
* Move schema cache from connection to pooleileencodes2019-06-051-0/+1
* Make changes per PR feedbackAli Ibrahim2019-04-121-2/+2
* Cache full MySQL version in schema cacheAli Ibrahim2019-04-111-2/+6
* Cache database version in schema cacheAli Ibrahim2019-04-031-1/+1
* Add `Style/RedundantFreeze` to remove redudant `.freeze`Yasuo Honda2018-09-291-2/+2
* Remove mysql2 gem version requirement "< 0.6.0"Yasuo Honda2018-09-141-1/+1
* Omit BEGIN/COMMIT statements for empty transactionsEugene Kenny2018-08-131-0/+4
* Turn on performance based copsDillon Welch2018-07-231-1/+1
* Support mysql2 0.4.x and 0.5.xAaron Stone2018-03-201-1/+1
* Drop mysql2 version less than 0.4.3 to guarantee fork safety (#31244)Ryuta Kamizono2017-11-281-1/+1
* Let rubygems handle our objection to mysql2 0.4.3Matthew Draper2017-11-261-2/+1
* Improve AR connection fork safetyMatthew Draper2017-11-181-0/+5
* [Active Record] require => require_relativeAkira Matsuda2017-10-211-2/+2
* Fix test failures when prepared statements are disabledSean Griffin2017-07-241-1/+1
* Fix build failures on MySQLSean Griffin2017-07-241-1/+1
* Use frozen-string-literal in ActiveRecordKir Shatrov2017-07-191-0/+2
* [Active Record] require => require_relativeAkira Matsuda2017-07-011-2/+2
* Remove mysql2 database adapter default username rootAaron Stone2017-04-261-2/+0
* Mysql2::Client::FOUND_ROWS should be defined in all currently supported versi...Akira Matsuda2016-11-101-6/+4
* activerecord/mysql2: Avoid setting @connection to nil, just close itDylan Thacker-Smith2016-09-081-5/+1
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-11/+11
* modernizes hash syntax in activerecordXavier Noria2016-08-061-2/+2
* applies new string literal convention in activerecord/libXavier Noria2016-08-061-8/+8
* Include the Savepoints module in all adapters.Vipul A M2016-04-241-0/+4
* Merge pull request #23461 from kamipo/prepared_statements_for_mysql2_adapterJeremy Daer2016-04-231-50/+5
|\
| * Add prepared statements support for `Mysql2Adapter`Ryuta Kamizono2016-04-211-51/+5
|/
* Add support for specifying comments for tables, columns, and indexes.Andrey Novikov2016-04-161-0/+8
* remove trailing whitespace.Yves Senn2016-03-021-1/+1
* Remove not needed `exec_insert` in mysql2 adapterRyuta Kamizono2016-03-021-4/+0
* Fix `NoMethodError: undefined method `fields' for nil:NilClass`Ryuta Kamizono2016-02-291-1/+1
* Remove `alias exec_without_stmt exec_query`Ryuta Kamizono2016-02-191-2/+0
* MariaDB does not support JSON typeRyuta Kamizono2016-02-061-1/+1
* Refactor `connection.insert_sql`Ryuta Kamizono2016-01-071-5/+0
* Fix `connection#create` in PG adapterRyuta Kamizono2016-01-051-1/+0
* Remove outdated commentRyuta Kamizono2015-12-271-28/+0
* Improve `select_one` in `Mysql2Adapter`Ryuta Kamizono2015-12-271-0/+10
* Add support for passing flags to MySQL2 adapter by arrayStephen Blackstone2015-12-221-1/+6
* Allow users to pass flags from database.ymlStephen Blackstone2015-12-151-2/+2
* `connection_options` is only needed for `MysqlAdapter`Ryuta Kamizono2015-11-291-2/+1
* Revert "Add prepared statements support for `Mysql2Adapter`"Sean Griffin2015-11-261-52/+25
* Add prepared statements support for `Mysql2Adapter`Ryuta Kamizono2015-11-261-25/+52
* `set_field_encoding` is only needed for `MysqlAdapter`Ryuta Kamizono2015-11-241-4/+0
* Deprecate exception#original_exception in favor of exception#causeYuki Nishijima2015-11-031-1/+1
* Do not cache prepared statements that are unlikely to have cache hitsSean Griffin2015-10-201-1/+1
* Add stored procedure test in mysql2Ryuta Kamizono2015-10-151-1/+4
* Merge pull request #19086 from kamipo/move_explain_into_abstract_mysql_adapterJeremy Daer2015-09-191-78/+0
|\
| * Move `explain` into `AbstractMysqlAdapter`Ryuta Kamizono2015-03-011-78/+0