aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
...
* Speed up and simplify query caching.Jeremy Kemper2007-09-1710-62/+154
* connection.select_rows 'sql' returns an array (rows) of arrays (field values)...Jeremy Kemper2007-09-166-9/+79
* Extract Firebird, FronBase, and OpenBase adapters into gems. Closes #9508, #9...Jeremy Kemper2007-09-153-2050/+0
* RubyGem database adapters: expects a gem named activerecord-<database>-adapte...Jeremy Kemper2007-09-151-3/+19
* Fixed that altering join tables in migrations would fail w/ sqlite3 #7453 [Ti...David Heinemeier Hansson2007-09-151-1/+2
* OpenBase: update for new lib and latest Rails. Support migrations. Closes #8748.Jeremy Kemper2007-09-131-119/+229
* minor speedups + forward-compat syntaxJeremy Kemper2007-09-132-4/+4
* Work around mysql limitations for defaults on text columns with not null. Cl...Michael Koziarski2007-09-041-0/+1
* Fix spacingDavid Heinemeier Hansson2007-08-212-2/+2
* Improve performance and functionality of the postgresql adapter. Closes #804...Michael Koziarski2007-08-162-179/+422
* Refactored in use of extract_options! (closes #9079) [josh]David Heinemeier Hansson2007-07-241-1/+1
* Mock the beginning of the transaction also. References #8642.Jeremy Kemper2007-06-231-1/+1
* Rollback if commit raises an exception. Closes #8642.Jeremy Kemper2007-06-231-2/+9
* MySQL: fix show_variable. Closes #8448.Jeremy Kemper2007-06-201-1/+2
* Rollback [6961] which breaks SQLite tests. Reference #7345.Jeremy Kemper2007-06-081-2/+1
* Migrations: raise if a column is duplicated. Closes #7345.Jeremy Kemper2007-06-071-1/+2
* Typo in PostgreSQL change_column quoting. References #8466.Jeremy Kemper2007-05-291-1/+1
* Missed Oracle rename_column quoting. References #8466.Jeremy Kemper2007-05-291-1/+1
* SQLite, MySQL, PostgreSQL, Oracle: quote column names in column migration SQL...Jeremy Kemper2007-05-294-15/+20
* Oracle binary fixtures; pull fixture insertion into the adapters. Closes #7987.Jeremy Kemper2007-05-262-10/+32
* MySQL: create_database takes :charset and :collation options. Charset default...Jeremy Kemper2007-05-261-9/+35
* Migrations: add_column supports custom column types. Closes #7742. First-patc...Jeremy Kemper2007-05-251-14/+17
* Load database adapters on demand. Eliminates config.connection_adapters and R...Jeremy Kemper2007-05-253-33/+42
* Replace the transaction {|transaction|..} semantics with a new Exception Acti...Michael Koziarski2007-05-181-8/+3
* Oracle: extract column length for CHAR also. Closes #7866.Jeremy Kemper2007-05-151-0/+1
* Add documentation for :encoding option to mysql adapter. Closes #8219 [marclove]Marcel Molina2007-05-061-0/+1
* Added short-hand declaration style to migrations (inspiration from Sexy Migra...David Heinemeier Hansson2007-05-061-1/+45
* Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug ...David Heinemeier Hansson2007-04-281-1/+0
* Add helpful debugging info to the ActiveRecord::StatementInvalid exception in...Rick Olson2007-03-271-2/+2
* SQLite: binary escaping works with ='u'. Closes #7862.Jeremy Kemper2007-03-191-2/+2
* PostgreSQL: remove DateTime -> Time downcast. Bypass the DateTime migration t...Jeremy Kemper2007-03-161-10/+0
* Oracle: fix quoted primary keys and datetime overflow. Closes #7798.Jeremy Kemper2007-03-121-4/+13
* Fix @logger.debug? conditional considering @logger may be nil.Jeremy Kemper2007-03-111-14/+10
* DateTimes assume the default timezone. Closes #7764.Jeremy Kemper2007-03-091-2/+3
* Fix typo. References #7727, closes #7762.Jeremy Kemper2007-03-081-1/+1
* Sybase: hide timestamp columns since they're inherently read-only. Closes #7716.Jeremy Kemper2007-03-061-2/+2
* Oracle: overflow Time to DateTime. Closes #7718.Jeremy Kemper2007-03-061-2/+5
* PostgreSQL: don't use async_exec and async_query with postgres-pr. Closes #7727.Jeremy Kemper2007-03-061-1/+4
* Fix an edge case with dates during the Italian calendar reform! Hehe. Closes ...Jeremy Kemper2007-03-061-1/+6
* SQLServer: recognize real column type as Ruby float, correctly schema-dump ta...Jeremy Kemper2007-03-031-11/+21
* Added database connection as a yield parameter to ActiveRecord::Base.transact...David Heinemeier Hansson2007-02-211-1/+6
* Enable active record cache automatically for all actionsTobias Lütke2007-02-211-11/+11
* When dealing with SQLite3, use the table_info pragma helper, so that the bind...Jamis Buck2007-01-301-1/+9
* Oracle: fix lob and text default handling. Closes #7344.Jeremy Kemper2007-01-291-2/+10
* SQLServer: don't choke on strings containing 'null'. Closes #7083.Jeremy Kemper2007-01-281-1/+1
* MySQL: blob and text columns may not have defaults in 5.x. Update fixtures sc...Jeremy Kemper2007-01-281-4/+10
* MySQL: SET SQL_AUTO_IS_NULL=0 so 'where id is null' doesn't select the last i...Jeremy Kemper2007-01-281-0/+4
* Use Date#to_s(:db) for quoted dates. Closes #7411.Jeremy Kemper2007-01-282-7/+10
* Don't create instance writer methods for class attributes. Closes #7401 [Rick]Rick Olson2007-01-281-1/+1
* Nodoc the irrelevant (from 1.2)David Heinemeier Hansson2007-01-264-8/+8