aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
Commit message (Collapse)AuthorAgeFilesLines
* implements automatic EXPLAIN logging for slow queriesXavier Noria2011-12-021-0/+6
|
* AbstractAdapter#close can be called to add the connection back to theAaron Patterson2011-11-291-11/+18
| | | | pool.
* expire will set in_use to falseAaron Patterson2011-11-291-0/+5
|
* Leased connections return false on second leaseAaron Patterson2011-11-291-2/+4
|
* Adapters keep in_use flag when leasedAaron Patterson2011-11-291-1/+14
|
* removing deprecated methodsAaron Patterson2011-11-191-18/+0
|
* pushing caching and visitors down to the connectionAaron Patterson2011-11-191-0/+3
|
* AR changes to support creating ordered (asc, desc) indexesVlad Jebelev2011-11-041-0/+5
|
* Only use LOWER for mysql case insensitive uniqueness check when column has a ↵Joseph Palermo2011-10-091-0/+4
| | | | case sensitive collation.
* Adding missing autoloadClaudio Poli2011-08-241-0/+1
|
* In 1efd88283ef68d912df215125951a87526768a51, ConnectionAdapters was put ↵Jon Leighton2011-08-161-12/+22
| | | | under eager_autoload. Due to the requires in that file, this caused ConnectionSpecification to be loaded, which references ActiveRecord::Base, which means the database connection is established. We do not want to connect to the database when Active Record is loaded, only when ActiveRecord::Base is first referenced by the user.
* Remove TODO comment I didn't mean to commitJon Leighton2011-08-091-2/+0
|
* Make it the responsibility of the connection to hold onto an ARel visitor ↵Jon Leighton2011-08-081-0/+24
| | | | 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.
* initializing @open_transactions in the initialize methodAaron Patterson2011-08-031-4/+2
|
* Remove extra whitespacesSebastian Martinez2011-05-031-9/+9
|
* set the backtrace to prevent AR exceptions from lying to usAaron Patterson2011-04-221-1/+3
|
* use index based substitution for bind parametersAaron Patterson2011-04-131-1/+1
|
* adding a case_sensitive_modifier for forcing comparisons to be case sensitiveAaron Patterson2011-04-111-0/+4
|
* log method takes an option list of bind valuesAaron Patterson2011-02-091-5/+7
|
* moving AR::ConnectionAdapters::Column to its own fileAaron Patterson2011-02-011-0/+1
|
* Add :bulk => true option to change_tablePratik Naik2011-01-311-0/+4
|
* SQLite3 has supported savepoints since version 3.6.8, we should use this!Jon Leighton2011-01-111-2/+2
|
* Use params default.Emilio Tagua2010-11-241-2/+1
|
* Removed ids_in_list_limit in favor of in_clause_length defined in ↵Alex Rothenberg2010-11-231-5/+0
| | | | database_limits.rb
* Adapters can specify maximum number of ids they support in a list of expressionsAlex Rothenberg2010-11-181-0/+5
| | | | | (default is nil meaning unlimited but Oracle imposes a limit of 1000) Limit is used to make multiple queries when preloading associated has_many or habtm records
* speeding up query cacheAaron Patterson2010-10-271-1/+1
|
* renaming bind_values to binds where it makes senseAaron Patterson2010-10-261-2/+2
|
* one more mysql test left!Aaron Patterson2010-10-261-0/+7
|
* exec returns an AR::ResultAaron Patterson2010-10-261-0/+1
|
* adding bind value substitutionAaron Patterson2010-10-261-0/+6
|
* Move runtime back to the Thread.currentJosé Valim2010-07-261-7/+0
|
* Cache instrumenter again as per Aaron's patch.José Valim2010-07-251-1/+2
|
* Move runtime back to connection.José Valim2010-07-251-0/+7
|
* Revert the previous three commits.José Valim2010-07-251-16/+2
| | | | | | * AS::Notifications#instrument should not measure anything, it is not its responsibility; * Adding another argument to AS::Notifications#instrument API needs to be properly discussed;
* cache the instrumentor for a speed gainAaron Patterson2010-07-251-2/+2
|
* use a hash to collect optional statistics about the instrumentationAaron Patterson2010-07-251-2/+16
|
* Move runtime to log subscriber.José Valim2010-07-251-7/+0
|
* Get rid of instrumenter.elapsed.José Valim2010-07-241-8/+2
|
* reusing the time instrumentation from the instrumenter rather than ↵Aaron Patterson2010-07-191-4/+7
| | | | Benchmark. [#5098 state:open]
* Remove block definition from method, is not needed since yield is used inside.Emilio Tagua2010-06-241-1/+1
|
* Fix connection reloading in development mode. [#4929 state:resolved]Edgars Beigarts2010-06-221-2/+3
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* remove executable permission from files that don't need it. [#4802 ↵rohit2010-06-201-0/+0
| | | | | | state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* edit pass: the names of Rails components have a space, ie, "Active Record", ↵Xavier Noria2010-06-141-2/+2
| | | | not "ActiveRecord"
* make add_index and remove_index more resilient; new rename_index method; ↵Étienne Barrié2010-05-181-0/+2
| | | | | | | | track database limits [#3452 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Change event namespace ordering to most-significant first [#4504 state:resolved]Justin George2010-05-021-1/+1
| | | | | | | | | More work still needs to be done on some of these names (render_template.action_view and render_template!.action_view particularly) but this allows (for example) /^sql/ to subscribe to all the various ORMs without further modification Signed-off-by: José Valim <jose.valim@gmail.com>
* clearing up many warnings, removing unnecessary regular expresion ↵Aaron Patterson2010-04-101-0/+1
| | | | | | comparisons [#4365 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* avoid active not initialized warningSantiago Pastorino2010-02-221-0/+1
|
* ActiveRecord should give the connection id as payload, and not the whole ↵José Valim2010-01-151-1/+1
| | | | connection.
* Create Rails::Subscriber::TestHelper and use it to make ActiveRecord ↵José Valim2010-01-131-0/+1
| | | | subscriber tests run in both sync and async scenarios.
* Move AR logging responsibilities to ActiveRecord::Railties::Subscriber.José Valim2010-01-131-25/+1
|