aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
Commit message (Collapse)AuthorAgeFilesLines
* Avoid unnecessary catching of Exception instead of StandardError.Dylan Smith2012-06-171-1/+1
|
* Merge pull request #5976 from aderyabin/fix1Jeremy Kemper2012-04-251-5/+0
|\ | | | | Duplicate quote_table_name method
| * already defined in quotingAndrey Deryabin2012-04-251-5/+0
| |
* | cleanliness in method parametersAndrey Deryabin2012-04-251-1/+1
|/
* errors should probably be logged as errorsAaron Patterson2012-03-151-20/+19
|
* Merge pull request #5162 from kennyj/schema_cache_dumpAaron Patterson2012-03-071-0/+5
|\ | | | | [Proposal] Schema cache dump
| * Load db/schema_cache.dump duaring boot time.kennyj2012-03-011-0/+5
| |
* | only log an error if there is a logger. fixes #5226Aaron Patterson2012-03-021-1/+1
|/
* tag bind params with a bind param objectAaron Patterson2012-02-201-1/+1
|
* Autoload various constants effectively in abstract connection adapter.Waseem Ahmad2012-02-161-9/+12
|
* Added where option to add_index to support postgresql partial indicesMarcelo Silveira2012-02-091-0/+5
| | | | | | | | | | | The `add_index` method now supports a `where` option that receives a string with the partial index criteria. add_index(:accounts, :code, :where => "active") Generates CREATE INDEX index_accounts_on_code ON accounts(code) WHERE active
* 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.
* 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
|