aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/mysql2_adapter.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* | Add config option, rdoc, tests for mysql(2) STRICT_ALL_TABLES mode.Michael Pearson2012-05-051-2/+4
| |
* | Default to 'strict mode' in MySQLMichael Pearson2012-05-051-0/+6
| |
* | update mysql for new exec_insert signatureDoug Cole2012-03-311-1/+1
|/
* prepared statements can be disabledAaron Patterson2012-02-211-15/+5
|
* tag bind params with a bind param objectAaron Patterson2012-02-201-1/+1
|
* Alias reconnect! to reset! for Mysql2 adapter since they have sameWaseem Ahmad2012-02-121-5/+1
| | | | behavior.
* made the result set object act more like an arrayAaron Patterson2012-01-311-1/+1
|
* Support establishing connection on ActiveRecord::Model.Jon Leighton2011-12-281-1/+1
| | | | | This is the 'top level' connection, inherited by any models that include ActiveRecord::Model or inherit from ActiveRecord::Base.
* I herd you like modules.Jon Leighton2011-12-241-2/+2
|
* implements automatic EXPLAIN logging for slow queriesXavier Noria2011-12-021-0/+78
|
* Bump Mysql2!Arun Agrawal2011-11-221-1/+1
|
* Only use LOWER for mysql case insensitive uniqueness check when column has a ↵Joseph Palermo2011-10-091-2/+2
| | | | case sensitive collation.
* Extract simplified_type into the abstract classJon Leighton2011-08-291-15/+3
|
* Create an AbstractMysqlAdapter to abstract the common code between ↵Jon Leighton2011-08-291-528/+56
| | | | MysqlAdapter and Mysql2Adapter.
* prevent sql injection attacks by escaping quotes in column namesAaron Patterson2011-08-161-1/+1
|
* Use new SelectManager#source methodJon Leighton2011-08-151-1/+1
|
* Use new SelectManager#projections= methodJon Leighton2011-08-151-1/+1
|
* use update.key instead of update.ast.key. make better use of select manager.Jon Leighton2011-08-151-12/+8
|
* Use a SelectCore rather than a full SelectManagerJon Leighton2011-08-151-2/+3
|
* Refactor building the update managerJon Leighton2011-08-151-3/+2
|
* Support for multi-table updates with limits, offsets and ordersJon Leighton2011-08-151-1/+22
|
* Support updates with joins. Fixes #522.Jon Leighton2011-08-151-0/+4
|
* Make it the responsibility of the connection to hold onto an ARel visitor ↵Jon Leighton2011-08-081-0/+4
| | | | for generating SQL. This improves the code architecture generally, and solves some problems with marshalling. Adapter authors please take note: you now need to define an Adapter.visitor_for method, but it degrades gracefully with a deprecation warning for now.
* remove deprication warning for ruby 1.9.3-head for unused variablesVishnu Atrai2011-07-261-1/+1
|
* Bump to mysql2 0.3.6Guillermo Iguaran2011-06-171-1/+1
|
* Bump mysql2 to 0.3.5Arun Agrawal2011-06-161-1/+1
|
* Bump mysql2 upSantiago Pastorino and José Ignacio Costa2011-06-161-1/+1
|
* No need to override for just calling superAkira Matsuda2011-05-291-4/+0
|
* removed deprecated methods, and related tests, from ActiveRecordJosh Kalderimis2011-05-251-18/+0
|
* Remove extra white-space on some exception messages.Sebastian Martinez2011-05-231-2/+2
|
* use a null byte as a bind parameter substitute as it is not allowed in ↵Aaron Patterson2011-05-091-3/+8
| | | | normal SQL. fixes #411, #417
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-05-041-0/+6
|\
| * Improves Mysql2 adapter docsSebastian Martinez2011-05-031-0/+6
| |
* | added the mysql schema test to mysql2 adapter, and fixed the corresponding ↵Josh Kalderimis2011-05-031-2/+17
| | | | | | | | failures
* | favor collect over each in mysql* adaptersJosh Kalderimis2011-05-031-4/+2
| |
* | Remove schema noise from logging (TODO: Deprecate/remove the name attribute ↵David Heinemeier Hansson2011-05-011-4/+4
|/ | | | to all these methods -- will take a pull request!)
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-05-011-0/+13
|\ | | | | | | | | Conflicts: railties/guides/source/contributing_to_ruby_on_rails.textile
| * Merge branch 'master' of github.com:lifo/docrailsDan Pickett2011-04-291-0/+13
| |\
| | * Added missing docs to mysql2_adapterSebastian Martinez2011-04-221-0/+13
| | |
* | | using bind parameters for updatesAaron Patterson2011-04-301-0/+1
|/ /
* | supporting delete with bind parameters in mysql2Aaron Patterson2011-04-291-0/+8
| |
* | requiring a newer version of the mysql2 gemAaron Patterson2011-04-271-0/+1
|/
* mimic prepared statements in the exec_insert for mysql2Aaron Patterson2011-04-141-0/+11
|
* implement exec_query on mysql2 adapterAaron Patterson2011-04-111-2/+20
|
* adding a case_sensitive_modifier for forcing comparisons to be case sensitiveAaron Patterson2011-04-111-0/+5
|
* switch over to Mysql2::Client#ping for the mysql2 connection checkBrian Lopez2011-02-121-4/+1
|
* mysql2 should log these sql statementsAaron Patterson2011-02-071-1/+1
|
* refactor a bunch of return / if to a case / whenAaron Patterson2011-02-031-4/+8
|
* add_limit_offset! is deprecatedAaron Patterson2011-02-031-0/+1
|
* just use the superclass implementationAaron Patterson2011-02-031-49/+0
|