aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* 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
* Make add_column use the options hash with the Sqlite Adapter. Closes #6464 [o...Michael Koziarski2006-10-241-1/+1
* MySQL: all_hashes compatibility with old MysqlRes class. Closes #6429.Jeremy Kemper2006-10-201-4/+10
* automatically add primary key to #select_limited_ids_list order by clause for...Rick Olson2006-10-132-0/+10
* fix select_limited_ids_list issues in postgresql, retain current behavior in ...Rick Olson2006-10-132-1/+15
* learn to clean up after myselfRick Olson2006-10-091-4/+0
* Reverted old select_limited_ids_list postgresql fix that caused issues in mys...Rick Olson2006-10-091-0/+4
* Fixed rename_table on SQLite tables with indexes defined (closes #5942) [bran...David Heinemeier Hansson2006-10-091-6/+18
* Added timeout option to SQLite3 configurations to deal more gracefully with S...David Heinemeier Hansson2006-10-091-0/+3
* MySQL: introduce Mysql::Result#all_hashes to support further optimization. Cl...Jeremy Kemper2006-10-021-10/+41
* SQLServer: work around bug where some unambiguous date formats are not correc...Jeremy Kemper2006-08-251-1/+2
* Rollback #5819 since it's compatible with PostgreSQL 8.1 only. References #5819.Jeremy Kemper2006-08-221-1/+5
* whitespaceJeremy Kemper2006-08-191-2/+1
* PostgreSQL: simplify index introspection query. Closes #5819.Jeremy Kemper2006-08-191-5/+2
* Make indexed columns easy to extract from the index name. Oracle users should...Jeremy Kemper2006-08-151-1/+1
* Migrations: uniquely name multicolumn indexes so you don't have to.Jeremy Kemper2006-08-151-10/+8
* PostgreSQL: autodetected sequences work correctly with multiple schemas. Rely...Jeremy Kemper2006-08-091-2/+3
* Refactored select routing for SQL Server adapter (closes #5683) [tom@popdog.net]David Heinemeier Hansson2006-08-051-11/+11
* Patch sql injection vulnerability when using integer or float columns.Jamis Buck2006-07-271-1/+2
* create_table rdoc: suggest :id => false for habtm join tablesJeremy Kemper2006-07-101-2/+2
* PostgreSQL: return array fields as strings. Closes #4664.Jeremy Kemper2006-07-101-0/+2
* SQLServer: added tests to ensure all database statements are closed, refactor...Jeremy Kemper2006-07-101-94/+123
* Oracle: BigDecimal support. Closes #5667.Jeremy Kemper2006-07-102-20/+17
* r4704@asus: jeremy | 2006-06-27 12:00:19 -0700Jeremy Kemper2006-07-0813-101/+199