aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #6477 from steveklabnik/close_discovered_pg_connectionRafael Mendonça França2012-05-301-1/+2
* Merge pull request #5244 from fotos/myqsl2_wait_timeoutRafael Mendonça França2012-05-251-1/+1
* Synchronize the ConnectionPool#release method to avoid thread safety issues [...Andrew Selder2012-05-231-10/+12
* Postgresql doesn't accept limits on binary (bytea) columns.Victor Costan2012-05-211-8/+19
* 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-092-4/+6
* Deprecate remove_column with array as an argumentPiotr Sarnacki2012-05-022-0/+13
* Be sure to correctly fetch PK name from MySQL even if the PK has some custom ...Akira Matsuda2012-04-191-1/+1
* Merge pull request #5437 from kennyj/fix_5430Aaron Patterson2012-03-151-1/+1
* 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
* only log an error if there is a logger. fixes #5226Aaron Patterson2012-03-022-2/+2
* revert setting NOT NULL constraints in add_timestampsXavier Noria2012-03-011-2/+2
* Fix type_to_sql with text and limit on mysql/mysql2. Fix GH #3931.kennyj2012-02-291-9/+20
* 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-216-28/+53
* tag bind params with a bind param objectAaron Patterson2012-02-213-3/+3
* more ruby 2.0 respond_to? changesAaron Patterson2012-02-211-1/+1
* Merge pull request #5096 from lawso017/masterAaron Patterson2012-02-211-16/+36
* Handle nil in add_index :length option in MySQLPaul Sadauskas2012-02-081-1/+1
* Fix Issue #4819densya2032012-02-041-1/+1
* Merge pull request #4809 from cfeist/feist-sqlite-binary-corruptionAaron Patterson2012-02-021-16/+1
* Merge pull request #4763 from kennyj/fix_4754Jon Leighton2012-01-311-1/+1
* query cache instrumentation should included the bindings in the payload [clos...Xavier Noria2012-01-301-1/+1
* on and ON are type casted to a true boolean columnSantiago Pastorino2012-01-111-2/+2
* Document that index names are made up of all columns, not just the first.Jo Liss2011-12-291-9/+2
* Should clear the primary keys cache alsoJon Leighton2011-12-161-0/+1
* Don't store defaults in the schema cacheJon Leighton2011-12-161-3/+2
* Defaults hash can go on the modelJon Leighton2011-12-161-14/+1
* Cache columns at the model level.Jon Leighton2011-12-161-9/+2
* Revert naive O(1) table_exists? implementation.Jon Leighton2011-12-133-12/+15
* Use `table_exists?` from the schema cache.Aaron Patterson2011-12-091-4/+2
* 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
* the required sqlite3 adapter responds to encoding, so stop checking.Aaron Patterson2011-12-071-5/+1
* 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
* SQlite3 Bump Arun Agrawal2011-12-041-1/+1
* Use show create table.kennyj2011-12-031-3/+8
* implements automatic EXPLAIN logging for slow queriesXavier Noria2011-12-025-78/+98
* push synchronization in to each method. Reduces method calls and makesAaron Patterson2011-11-291-25/+29