aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* Added OpenBase database adapter that builds on top of the http://www.spice-of...David Heinemeier Hansson2006-03-181-0/+349
* Rework table aliasing to account for truncated table aliases. Add smarter ta...Rick Olson2006-03-181-6/+2
* Add AbstractAdapter#table_alias_for to create table aliases according to the ...Rick Olson2006-03-185-0/+28
* Provide access to the underlying database connection with Adapter#raw_connect...Michael Koziarski2006-03-181-0/+7
* Remove broken attempts at handling columns with a a default of 'now()' in the...Michael Koziarski2006-03-181-3/+0
* Added connection#current_database that'll return of the current database (onl...David Heinemeier Hansson2006-03-182-0/+7
* Added migrations support to the Sybase adapter (closes #4293) [John R. Sheets]David Heinemeier Hansson2006-03-181-18/+94
* Make all tinyint(1) variants act like boolean in mysql (tinyint(1) unsigned, ...Jamis Buck2006-03-171-1/+1
* Oracle adapter gets some love #4230 [schoenm@earthlink.net]David Heinemeier Hansson2006-03-161-4/+15
* Stop the MySQL adapter crashing when views are present. (closes #3782) [Jonat...David Heinemeier Hansson2006-03-161-1/+16
* Dynamically set allow_concurrency. Closes #4044.Jeremy Kemper2006-03-131-19/+47
* 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