aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb
Commit message (Expand)AuthorAgeFilesLines
* Fix regression on `.select_*` methods.Arthur Neves2014-01-301-3/+14
* Revert "ask the fixture set for the sql statements"Aaron Patterson2014-01-091-5/+1
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2013-12-201-1/+1
|\
| * Typos. return -> returns. [ci skip]Lauro Caetano2013-12-031-1/+1
* | Remove `DatabaseStatements#case_sensitive_equality_operator`. It has been dep...Ryuta Kamizono2013-11-291-4/+0
|/
* ask the fixture set for the sql statementsAaron Patterson2013-11-041-1/+5
* Check if the SQL is not a prepared statementRafael Mendonça França2013-09-111-1/+1
* Revert "Do not dup the binds when visiting the AST"Rafael Mendonça França + Kassio Borges2013-08-311-1/+2
* Do not dup the binds when visiting the ASTRafael Mendonça França2013-08-311-2/+1
* drop extra variableVipul A M2013-08-121-2/+2
* Fix indentation.kennyj2013-07-241-8/+8
* Simplify select_one method.kennyj2013-07-241-2/+1
* Defines the return type of select / select_all method.kennyj2013-07-231-4/+2
* SQLite3 3.6.8+ supports savepointsNeeraj Singh2013-03-071-1/+2
* schema cache already has the columns as a hash, so use thatAaron Patterson2012-11-251-1/+1
* speed up fixture loading by querying the schema cache for column namesAaron Patterson2012-11-251-1/+1
* Migration of docs to 1.9 hash syntaxAvnerCohen2012-10-231-1/+1
* Support for partial inserts.Jon Leighton2012-09-281-1/+1
* Support for specifying transaction isolation levelJon Leighton2012-09-211-6/+57
* simplify rescueJon Leighton2012-09-151-3/+3
* Remove our use of #outside_transaction?Jon Leighton2012-09-151-32/+8
* Remove the transaction_open variableJon Leighton2012-09-151-21/+28
* Move transaction joinability into the transaction objectJon Leighton2012-09-151-13/+13
* Alter the naming structure a bitJon Leighton2012-09-151-2/+2
* DRYJon Leighton2012-09-151-4/+8
* Don't do the rollback in #commitJon Leighton2012-09-151-1/+1
* Store the transaction number in the transaction objectJon Leighton2012-09-151-1/+0
* Start to tease out transaction handling into a state machineJon Leighton2012-09-151-79/+28
* Revert "create a transaction object and point AR objects at that object durin...Jon Leighton2012-09-151-5/+3
* create a transaction object and point AR objects at that object during aAaron Patterson2012-09-071-3/+5
* use Hash#fetch to eliminate conditionalAaron Patterson2012-08-241-8/+3
* This method is useless without a block, so remove testAaron Patterson2012-08-201-11/+9
* remove unused variableAaron Patterson2012-08-201-1/+1
* initialize instance variables to avoid conditionalsAaron Patterson2012-08-201-2/+7
* Avoid unnecessary catching of Exception instead of StandardError.Dylan Smith2012-06-171-2/+2
* Work around undiagnosed bug that's draining a relation's bind_valuesJeremy Kemper2012-05-311-0/+1
* Merge pull request #5698 from dougcole/support_postgresql_partitioningAaron Patterson2012-04-271-2/+2
|\
| * add use_returning as a postgresql connection configDoug Cole2012-03-311-2/+2
* | Fix delete_all when chained with joins.Rafael Mendonça França2012-04-101-3/+17
* | Remove unnecessary articles.Waseem Ahmad2012-04-031-3/+3
|/
* use bind values for join columnsAaron Patterson2012-02-271-4/+4
* prepared statements can be disabledAaron Patterson2012-02-211-7/+9
* fix nodocsVijay Dev2011-12-091-3/+3
* Use new SelectManager#projections= methodJon Leighton2011-08-151-2/+2
* use update.key instead of update.ast.key. make better use of select manager.Jon Leighton2011-08-151-2/+2
* Refactor building the update managerJon Leighton2011-08-151-5/+3
* Support for multi-table updates with limits, offsets and ordersJon Leighton2011-08-151-0/+3
* Support updates with joins. Fixes #522.Jon Leighton2011-08-151-0/+9
* Make it the responsibility of the connection to hold onto an ARel visitor for...Jon Leighton2011-08-081-14/+23
* Merge branch 'master' of github.com:rails/railsXavier Noria2011-05-251-29/+2
|\