aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Remove allow_concurrency and verification_timeout from ActiveRecord::Base ↵José Valim2010-01-131-5/+0
| | | | (deprecated since 2.2).
* Send the connection in AR notifications to avoid checking out new ↵José Valim2010-01-111-2/+4
| | | | connections in threads just for logging purposes.
* Use underscore in notification namespaces.José Valim2010-01-041-1/+1
|
* Use namespaces in notifications.José Valim2010-01-031-1/+1
|
* Kick AR logging back to life and move ControllerRuntime inside ↵José Valim2009-12-301-3/+7
| | | | ActiveRecord::Rails.
* Renamed Orchestra to Notifications once again [#3321 state:resolved]José Valim2009-10-151-1/+1
|
* Update Orchestra instrumentations and move part of logging to Orchestra.José Valim2009-10-151-10/+4
|
* Revert "Rename Orchestra to Notifications [#3321 state:resolved]"José Valim2009-10-151-1/+1
| | | | This reverts commit 8cbf825425dc8ad3770881ea4e100b9023c69ce2.
* Rename Orchestra to Notifications [#3321 state:resolved]Joshua Peek2009-10-141-1/+1
|
* Avoid warning spam by flipping to the new callbacks mechanism. These ↵Michael Koziarski2009-10-151-1/+1
| | | | callbacks are actually never called by rails itself, merely there for plugins
* Callbacks, DeprecatedCallbacks = NewCallbacks, CallbacksJoshua Peek2009-10-121-2/+2
|
* Instrument process_action, render and sql.José Valim2009-09-201-13/+9
|
* raises exception (ActiveRecord::ConfigurationError with message) on habtm ↵Jaime Bellmyer2009-08-091-0/+7
| | | | | | association creation if join table contains a primary key Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Translate adapter errors that indicate a violated uniqueness constraint to ↵Michael Schuerig2009-06-261-1/+6
| | | | | | ActiveRecord::RecordNotUnique exception derived from ActiveReecord::StatementInvalid. Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Cherry-pick core extensionsJeremy Kemper2009-05-131-0/+2
|