aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* 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
* SQLServer: quote table name in indexes query. Closes #2928.Jeremy Kemper2007-01-231-1/+1
* Make sure sqlite3 driver closes open connections on disconnect (closes #7105)Jamis Buck2007-01-221-0/+5
* Allow the Oracle adapter to insert a string "null". Closes #6997 [laurelfan]Michael Koziarski2007-01-161-1/+0
* Improve handling of LoadErrors with the oracle adapter. Closes #6780 [kubo]Michael Koziarski2007-01-162-3/+4
* Made sure that connections are only removed for SQLiteDavid Heinemeier Hansson2007-01-153-4/+6
* be like a duck. Let's not rely on explicit classes, so we can pass proxy obje...Jamis Buck2007-01-154-31/+47
* Skip column options for primary keys. Closes #7048.Jeremy Kemper2007-01-153-8/+10
* change_column accepts :default => nil. Closes #6956.Jeremy Kemper2007-01-159-29/+34
* MySQL, PostgreSQL: change_column_default quotes the default value and doesn't...Jeremy Kemper2007-01-152-2/+2
* Oracle: create_table takes a :sequence_name option to override the 'tablename...Jeremy Kemper2007-01-153-6/+8
* MySQL: retain SSL settings on reconnect. Closes #6976.Jeremy Kemper2007-01-141-0/+1
* Oracle: correctly perform eager finds with :limit and :order. Closes #7021.Jeremy Kemper2007-01-131-10/+17
* SQLServer: handle [quoted] table names. Closes #6635.Jeremy Kemper2007-01-121-0/+1
* PostgreSQL: use a subselect to correctly perform eager finds with :limit and ...Jeremy Kemper2007-01-122-4/+22
* Fix the Oracle adapter for serialized attributes stored in CLOBs. Closes #68...Michael Koziarski2007-01-051-0/+1
* Sybase adapter fixes. Closes #6926 [jsheets]Michael Koziarski2007-01-051-143/+138
* Oracle: fix connection reset failure. Closes #6846.Jeremy Kemper2006-12-201-1/+1
* If only life was that simple (it didnt help)David Heinemeier Hansson2006-12-013-0/+18
* Replace the elaborate reloading connection checking scheme, just fix the Ruby...David Heinemeier Hansson2006-12-013-18/+0
* Only reload connections in development mode that supports (and requires that)...David Heinemeier Hansson2006-11-263-0/+18
* Quote ActiveSupport::Multibyte::Chars. Closes #6653.Jeremy Kemper2006-11-201-1/+2
* Test for forged '' default before it's typecast. Closes #6156.Jeremy Kemper2006-11-201-2/+3
* MySQL: detect when a NOT NULL column without a default value is misreported a...Jeremy Kemper2006-11-201-0/+19
* Mysql::Result#all_hashes compatibility with Mysql C driver 2.6.x. Closes #6601.Jeremy Kemper2006-11-161-20/+22
* Cleanup SQLite AUTOINCREMENT: exclude sqlite_sequence table, factor out featu...Jeremy Kemper2006-11-141-2/+12
* Oracle: automatically detect the primary key. Closes #6594.Jeremy Kemper2006-11-131-4/+23
* Oracle: to increase performance, prefetch 100 rows and enable similar cursor ...Jeremy Kemper2006-11-131-2/+6
* Oracle: fix limited id selection for eager loading. Closes #6515.Jeremy Kemper2006-11-104-19/+53
* SQLite: use AUTOINCREMENT primary key in >= 3.1.0. Closes #6588.Jeremy Kemper2006-11-091-1/+9
* Firebird: decimal/numeric support. Closes #6408.Jeremy Kemper2006-11-071-10/+7
* SQLite: count(distinct) queries supported in >= 3.2.6, fix calculations worka...Jeremy Kemper2006-11-051-47/+32
* Oracle: resolve test failures, use prefetched primary key for inserts, check ...Jeremy Kemper2006-11-017-110/+53