| Commit message (Expand) | Author | Age | Files | Lines |
* | Be sure to correctly fetch PK name from MySQL even if the PK has some custom ... | Akira Matsuda | 2012-04-19 | 1 | -1/+1 |
* | Merge pull request #5437 from kennyj/fix_5430 | Aaron Patterson | 2012-03-15 | 1 | -1/+1 |
* | ConnectionPool.checkout takes account of ruby using 'non-blocking condition v... | Jonathan Rochkind | 2012-03-13 | 1 | -9/+18 |
* | make sure connections returned after close are marked as in_use | Aaron Patterson | 2012-03-12 | 1 | -0/+16 |
* | inline docs for clear_active_connections! no longer says it cleans dead threa... | Jonathan Rochkind | 2012-03-12 | 1 | -3/+1 |
* | make active_connection? return true only if there is an open connection in us... | Aaron Patterson | 2012-03-08 | 1 | -3/+4 |
* | only log an error if there is a logger. fixes #5226 | Aaron Patterson | 2012-03-02 | 2 | -2/+2 |
* | revert setting NOT NULL constraints in add_timestamps | Xavier Noria | 2012-03-01 | 1 | -2/+2 |
* | Fix type_to_sql with text and limit on mysql/mysql2. Fix GH #3931. | kennyj | 2012-02-29 | 1 | -9/+20 |
* | Revert "No need to pass options which is never used" | Rafael Mendonça França | 2012-02-26 | 1 | -2/+2 |
* | prepared statements can be disabled | Aaron Patterson | 2012-02-21 | 6 | -28/+53 |
* | tag bind params with a bind param object | Aaron Patterson | 2012-02-21 | 3 | -3/+3 |
* | more ruby 2.0 respond_to? changes | Aaron Patterson | 2012-02-21 | 1 | -1/+1 |
* | Merge pull request #5096 from lawso017/master | Aaron Patterson | 2012-02-21 | 1 | -16/+36 |
* | Handle nil in add_index :length option in MySQL | Paul Sadauskas | 2012-02-08 | 1 | -1/+1 |
* | Fix Issue #4819 | densya203 | 2012-02-04 | 1 | -1/+1 |
* | Merge pull request #4809 from cfeist/feist-sqlite-binary-corruption | Aaron Patterson | 2012-02-02 | 1 | -16/+1 |
* | Merge pull request #4763 from kennyj/fix_4754 | Jon Leighton | 2012-01-31 | 1 | -1/+1 |
* | query cache instrumentation should included the bindings in the payload [clos... | Xavier Noria | 2012-01-30 | 1 | -1/+1 |
* | on and ON are type casted to a true boolean column | Santiago Pastorino | 2012-01-11 | 1 | -2/+2 |
* | Document that index names are made up of all columns, not just the first. | Jo Liss | 2011-12-29 | 1 | -9/+2 |
* | Should clear the primary keys cache also | Jon Leighton | 2011-12-16 | 1 | -0/+1 |
* | Don't store defaults in the schema cache | Jon Leighton | 2011-12-16 | 1 | -3/+2 |
* | Defaults hash can go on the model | Jon Leighton | 2011-12-16 | 1 | -14/+1 |
* | Cache columns at the model level. | Jon Leighton | 2011-12-16 | 1 | -9/+2 |
* | Revert naive O(1) table_exists? implementation. | Jon Leighton | 2011-12-13 | 3 | -12/+15 |
* | Use `table_exists?` from the schema cache. | Aaron Patterson | 2011-12-09 | 1 | -4/+2 |
* | don't need a begin / end. | Aaron Patterson | 2011-12-09 | 1 | -6/+4 |
* | squelch table exists? queries. | Aaron Patterson | 2011-12-09 | 1 | -1/+1 |
* | Exceptions should read from the spec configu | Aaron Patterson | 2011-12-08 | 1 | -1/+1 |
* | fix nodocs | Vijay Dev | 2011-12-09 | 1 | -3/+3 |
* | fix comments | Vijay Dev | 2011-12-09 | 1 | -4/+2 |
* | Use a hash to look up column definitions | Aaron Patterson | 2011-12-07 | 1 | -2/+3 |
* | try to normalize the objects passed to column() | Aaron Patterson | 2011-12-07 | 1 | -9/+11 |
* | automatically add the column definition to the columns list if creating a new... | Aaron Patterson | 2011-12-07 | 1 | -12/+21 |
* | stop calling String#to_s so frequently | Aaron Patterson | 2011-12-07 | 1 | -3/+4 |
* | the required sqlite3 adapter responds to encoding, so stop checking. | Aaron Patterson | 2011-12-07 | 1 | -5/+1 |
* | Quitoting the table name before querying. | Aaron Patterson | 2011-12-05 | 1 | -1/+1 |
* | Speed up table_exists? for databases with a large number of tables | Jade Rubick | 2011-12-05 | 1 | -1/+6 |
* | SQlite3 Bump | Arun Agrawal | 2011-12-04 | 1 | -1/+1 |
* | Use show create table. | kennyj | 2011-12-03 | 1 | -3/+8 |
* | implements automatic EXPLAIN logging for slow queries | Xavier Noria | 2011-12-02 | 5 | -78/+98 |
* | push synchronization in to each method. Reduces method calls and makes | Aaron Patterson | 2011-11-29 | 1 | -25/+29 |
* | Automatic closure of connections in threads is deprecated. For example | Aaron Patterson | 2011-11-29 | 1 | -1/+7 |
* | AbstractAdapter#close can be called to add the connection back to the | Aaron Patterson | 2011-11-29 | 2 | -11/+19 |
* | Start implementing @reserved_connections in terms of connection leases. | Aaron Patterson | 2011-11-29 | 1 | -3/+3 |
* | Rename `checked_out` to more descriptive `active_connections` | Aaron Patterson | 2011-11-29 | 1 | -3/+3 |
* | Use connection lease to determine "checked_out" connections | Aaron Patterson | 2011-11-29 | 1 | -17/+21 |
* | expire will set in_use to false | Aaron Patterson | 2011-11-29 | 1 | -0/+5 |
* | Leased connections return false on second lease | Aaron Patterson | 2011-11-29 | 1 | -2/+4 |