aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
Commit message (Expand)AuthorAgeFilesLines
* Table#remove passed an array to remove_column, which is deprecated.Joe Rafaniello2012-08-181-1/+1
* Merge pull request #6985 from sidonath/disable-query-cache-for-locksRafael Mendonça França2012-07-061-1/+9
* Merge pull request #6900 from cbandy/issue-6898Carlos Antonio da Silva2012-06-281-0/+2
* Synchronize the ConnectionPool#release method to avoid thread safety issues [...Andrew Selder2012-05-231-10/+12
* Merge pull request #6398 from pmahoney/threadsafe-connection-poolAaron Patterson2012-05-191-4/+8
* Stop showing deprecations for Ruby 1.8.7 with remove_columnCarlos Antonio da Silva2012-05-091-2/+4
* Deprecate remove_column with array as an argumentPiotr Sarnacki2012-05-021-0/+6
* ConnectionPool.checkout takes account of ruby using 'non-blocking condition v...Jonathan Rochkind2012-03-131-9/+18
* make sure connections returned after close are marked as in_useAaron Patterson2012-03-121-0/+16
* inline docs for clear_active_connections! no longer says it cleans dead threa...Jonathan Rochkind2012-03-121-3/+1
* make active_connection? return true only if there is an open connection in us...Aaron Patterson2012-03-081-3/+4
* revert setting NOT NULL constraints in add_timestampsXavier Noria2012-03-011-2/+2
* Revert "No need to pass options which is never used"Rafael Mendonça França2012-02-261-2/+2
* prepared statements can be disabledAaron Patterson2012-02-212-8/+10
* Fix Issue #4819densya2032012-02-041-1/+1
* query cache instrumentation should included the bindings in the payload [clos...Xavier Noria2012-01-301-1/+1
* Document that index names are made up of all columns, not just the first.Jo Liss2011-12-291-9/+2
* Revert naive O(1) table_exists? implementation.Jon Leighton2011-12-131-6/+1
* don't need a begin / end.Aaron Patterson2011-12-091-6/+4
* squelch table exists? queries.Aaron Patterson2011-12-091-1/+1
* Exceptions should read from the spec configuAaron Patterson2011-12-081-1/+1
* fix nodocsVijay Dev2011-12-091-3/+3
* fix commentsVijay Dev2011-12-091-4/+2
* Use a hash to look up column definitionsAaron Patterson2011-12-071-2/+3
* try to normalize the objects passed to column()Aaron Patterson2011-12-071-9/+11
* automatically add the column definition to the columns list if creating a new...Aaron Patterson2011-12-071-12/+21
* stop calling String#to_s so frequentlyAaron Patterson2011-12-071-3/+4
* Quitoting the table name before querying.Aaron Patterson2011-12-051-1/+1
* Speed up table_exists? for databases with a large number of tablesJade Rubick2011-12-051-1/+6
* push synchronization in to each method. Reduces method calls and makesAaron Patterson2011-11-291-25/+29
* Automatic closure of connections in threads is deprecated. For exampleAaron Patterson2011-11-291-1/+7
* AbstractAdapter#close can be called to add the connection back to theAaron Patterson2011-11-291-0/+1
* Start implementing @reserved_connections in terms of connection leases.Aaron Patterson2011-11-291-3/+3
* Rename `checked_out` to more descriptive `active_connections`Aaron Patterson2011-11-291-3/+3
* Use connection lease to determine "checked_out" connectionsAaron Patterson2011-11-291-17/+21
* Deprecate set_primary_key in favour of self.primary_key=Jon Leighton2011-11-291-1/+1
* respond_to? information of AR is not the responsibility of the specAaron Patterson2011-11-291-7/+9
* remove unused instance variableAaron Patterson2011-11-281-1/+0
* just check in all connectionsAaron Patterson2011-11-281-6/+2
* Move connection resoluion logic to it's own testable class.Aaron Patterson2011-11-281-58/+74
* clean up string => hash conversion for connection poolAaron Patterson2011-11-281-19/+17
* pools are 1:1 with spec now rather than 1:1 with classAaron Patterson2011-11-282-4/+8
* break establish_connection to smaller methodsAaron Patterson2011-11-281-30/+40
* oops! I suck! :bomb:Aaron Patterson2011-11-201-1/+0
* pushing caching and visitors down to the connectionAaron Patterson2011-11-191-77/+31
* Revert "Merge pull request #1163 from amatsuda/sexier_migration_31"Aaron Patterson2011-11-171-8/+2
* Revert "Merge pull request #3603 from vijaydev/change_table_without_block_arg"Aaron Patterson2011-11-171-12/+7
* Adding a deprecation warning for use of the schema_info table.Aaron Patterson2011-11-161-0/+2
* Fix pull request #3609Noé Froidevaux2011-11-131-1/+1
* Prevent multiple SHOW TABLES calls when a table don't exists in database.Noé Froidevaux2011-11-111-3/+3