aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* fix unreplaced class varJeremy Kemper2006-03-021-1/+1
* Revert allow_concurrency change for better testing. Retrieve_connection in tw...Jeremy Kemper2006-03-021-1/+2
* Catch requirement of Sybase adapter, if we cant, dont have itDavid Heinemeier Hansson2006-03-021-2/+6
* Dont require sybase unless you try to connectDavid Heinemeier Hansson2006-03-021-1/+2
* Added Sybase database adapter that relies on the Sybase Open Client bindings ...David Heinemeier Hansson2006-03-021-0/+599
* (duh :)Jeremy Kemper2006-03-011-1/+1
* Typo in stale thread removal.Jeremy Kemper2006-03-011-1/+1
* Clear stale, cached connections left behind by defunct threads. Eliminate dup...Jeremy Kemper2006-03-011-76/+109
* Renamed the "oci" adapter to "oracle", but kept the old name as an alias (clo...David Heinemeier Hansson2006-03-011-36/+54
* Speed up class -> connection caching and stale connection verification. Close...Jeremy Kemper2006-02-272-31/+95
* ActiveRecord::Base.remove_connection explicitly closes database connections a...Jeremy Kemper2006-02-265-9/+31
* Documentation fixes (closes #3838)David Heinemeier Hansson2006-02-252-2/+2
* Improved the Oracle OCI Adapter with better performance for column reflection...David Heinemeier Hansson2006-02-211-25/+46
* SQLServer: more compatible limit/offset emulation. Closes #3779.Jeremy Kemper2006-02-091-1/+3
* PostgreSQL: correctly parse negative integer column defaults. References #3776.Jeremy Kemper2006-02-091-1/+1
* * Fix pagination problems when using includeMichael Koziarski2006-02-092-0/+10
* Fixed schema handling for DB2 adapter that didn't work: an initial schema cou...David Heinemeier Hansson2006-02-011-3/+6
* Support the :column option for remove_index with the PostgreSQL adapter. Clos...Marcel Molina2006-01-311-7/+1
* Add documentation for add_index and remove_index. Closes #3600.Marcel Molina2006-01-251-1/+11
* If the OCI library is not available, raise an exception indicating as much. C...Marcel Molina2006-01-251-0/+8
* Show a meaningful error when the DB2 adapter cannot be loaded due to missing ...Nicholas Seckar2006-01-221-0/+8
* Escape database name in MySQL adapter when creating and dropping databases. C...Marcel Molina2006-01-131-2/+2
* Multiple enhancements and adjustments to DB2 adaptor. Closes #3377.Marcel Molina2006-01-041-61/+91
* SchemaDumper now doesn't fail anymore when there are unknown column types in ...Tobias Lütke2005-12-241-1/+2
* Fix change_column to work with postgres 7.x and 8.x.Scott Barron2005-12-201-1/+11
* DRY up PG's add_column a bit to use change_column_default and match the otherScott Barron2005-12-201-9/+3
* Check for the key instead of the value, because it (the value) can be false.Scott Barron2005-12-201-1/+1
* Roll back [3244]. References #3116.Jeremy Kemper2005-12-131-1/+1
* MySQL: allow encoding option for mysql.rb driver.Jeremy Kemper2005-12-131-5/+1
* SQLServer: fix obscure optimistic locking bug, support uniqueidentifier colum...Jeremy Kemper2005-12-101-4/+8
* MySQL: ensure that @config is set.Jeremy Kemper2005-12-091-3/+2
* Oracle: active? performs a select instead of a commit. References #3133.Jeremy Kemper2005-12-081-1/+1
* Remove insignificant classes from docsDavid Heinemeier Hansson2005-12-081-2/+2
* MySQL: more robust test for nullified result hashes. References #3124.Jeremy Kemper2005-12-081-8/+2
* SQLite: find database file when RAILS_ROOT is a symlink. References #3116.Jeremy Kemper2005-12-081-1/+1
* PostgreSQL: more robust sequence name discovery. References #3087.Jeremy Kemper2005-12-081-3/+4
* Oracle: use syntax compatible with Oracle 8. References #3131.Jeremy Kemper2005-12-081-6/+5
* Dont overwrite the documentation from the real base classDavid Heinemeier Hansson2005-12-051-1/+0
* Clear the connection cache entry when a new connection is established on the ...Jeremy Kemper2005-12-051-1/+24
* Move dummy active? and reconnect! from sqlite to base adapter. References #428.Jeremy Kemper2005-12-042-13/+13
* Connection cache to speed up retrieve_connection and get rid of dirty connect...Jeremy Kemper2005-12-042-35/+3
* MySQL: work around ruby-mysql/mysql-ruby inconsistency with mysql.stat. Elim...Jeremy Kemper2005-12-031-7/+9
* Firebird: active? and reconnect! methods for handling stale connections. Ref...Jeremy Kemper2005-12-021-2/+23
* Firebird: updated for FireRuby 0.4.0. References #3009.Jeremy Kemper2005-12-021-67/+35
* PostgreSQL: active? compatibility with the pure-Ruby driver. Still need to m...Jeremy Kemper2005-11-281-2/+4
* MySQL: active? compatibility with the pure-Ruby driver. References #428.Jeremy Kemper2005-11-281-1/+5
* Oracle: active? check pings the database rather than testing the last command...Jeremy Kemper2005-11-241-17/+15
* SQLServer: resolve column aliasing/quoting collision when using limit or offs...Jeremy Kemper2005-11-241-1/+6
* Reloading a model doesn't lose track of its connection. References #2996.Jeremy Kemper2005-11-241-8/+8
* MySQL, PostgreSQL: reconnect! also reconfigures the connection. Otherwise, t...Jeremy Kemper2005-11-222-19/+36