aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* Multiple fixes and optimizations in PostgreSQL adapter, allowing ruby-postgre...Tobias Lütke2006-04-041-7/+25
* Get the green light for Oracle AR unit tests (closes #4573) [Michael Schoen]David Heinemeier Hansson2006-04-041-35/+37
* Fixed broken OCIAdapter (closes #4457) [schoenm@earthlink.net]David Heinemeier Hansson2006-03-301-8/+4
* Fixed documentationDavid Heinemeier Hansson2006-03-282-8/+12
* Support the use of public synonyms with the Oracle adapter; required ruby-oci...David Heinemeier Hansson2006-03-261-0/+1
* Only string_to_binary if the column respondsDavid Heinemeier Hansson2006-03-264-4/+4
* Change periods (.) in table aliases to _'s. Closes #4251 [jeff@ministrycente...Rick Olson2006-03-261-1/+1
* Do it in styleDavid Heinemeier Hansson2006-03-251-2/+2
* Fixed db_schema_import when binary types are present (closes #3101) [DHH]David Heinemeier Hansson2006-03-251-1/+1
* Fixed that MySQL enums should always be returned as strings (closes #3501) [DHH]David Heinemeier Hansson2006-03-251-0/+1
* Fixed DB2 adapter so nullable columns will be determines correctly now and qu...David Heinemeier Hansson2006-03-221-2/+3
* Fixed that schema changes while the database was open would break any connect...David Heinemeier Hansson2006-03-201-11/+15
* Fixed that schema changes while the database was open would break any connect...David Heinemeier Hansson2006-03-201-2/+14
* add support for COUNT(DISTINCT id) queries in sqlite2 (closes #4300) [Rick Ol...Rick Olson2006-03-191-2/+21
* SQL Server adapter gets some love (closes #4298) [rtomayko@gmail.com]David Heinemeier Hansson2006-03-181-13/+21
* 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