aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
...
* Refactored the AbstractAdapter to be a lot less scary. Cleaned up the docs an...David Heinemeier Hansson2005-09-251-521/+15
* Standardize the interpretation of boolean columns in the Mysql and Sqlite ada...Jamis Buck2005-09-251-5/+10
* Added AbstractAdapter#select_value and AbstractAdapter#select_values as conve...David Heinemeier Hansson2005-09-241-0/+13
* Post the postgresql adapter (and hopefully other adapters) pass all testsJamis Buck2005-09-231-2/+2
* Add ActiveRecord::SchemaDumper for dumping a DB schema to a pure-ruby file, m...Jamis Buck2005-09-231-8/+51
* Added dump of schema version to the db_structure_dump task for databases that...David Heinemeier Hansson2005-09-121-1/+11
* Rolled back broken #1814David Heinemeier Hansson2005-09-111-9/+1
* Added better exception error when unknown column types are used with migratio...David Heinemeier Hansson2005-09-111-1/+8
* Allow add_column and create_table to specify NOT NULL #1712 [emptysands@gmail...Jamis Buck2005-07-301-6/+12
* Fix create_table so that id column is implicitly added [Rick Olson]Jamis Buck2005-07-271-5/+2
* Made Oracle a first-class connection adapter by adhering closer to idiomatic ...David Heinemeier Hansson2005-07-241-1/+1
* Added migration support for SQLite (using temporary tables to simulate ALTER ...David Heinemeier Hansson2005-07-221-16/+30
* Remove extra definition of supports_migrations? from abstract_adaptor.rbNicholas Seckar2005-07-221-4/+0
* Fixed incompatibility in DB2 adapter with the new limit/offset approach #1718...David Heinemeier Hansson2005-07-171-0/+2
* Fixed that each request with the WEBrick adapter would open a new database co...David Heinemeier Hansson2005-07-101-6/+12
* Fixed first run of "rake migrate" on PostgreSQL by not expecting a return val...David Heinemeier Hansson2005-07-071-1/+1
* Changed logging of SQL statements to use the DEBUG level instead of INFO. Add...David Heinemeier Hansson2005-07-051-1/+1
* Made default changes work in both postgresql and mysql #1612 [Tobias Luetke]David Heinemeier Hansson2005-07-051-1/+5
* Sugared up migrations with even more bling #1609 [Tobias Luekte]David Heinemeier Hansson2005-07-051-19/+77
* Added new Migrations framework for describing schema transformations in a way...David Heinemeier Hansson2005-07-041-4/+15
* Fixed migration initialization of tableDavid Heinemeier Hansson2005-07-041-1/+1
* r1612@asus: jeremy | 2005-07-03 04:35:59 -0700Jeremy Kemper2005-07-031-5/+3
* r1611@asus: jeremy | 2005-07-03 04:21:52 -0700Jeremy Kemper2005-07-031-10/+11
* r1610@asus: jeremy | 2005-07-03 00:19:06 -0700Jeremy Kemper2005-07-031-2/+0
* r1603@asus: jeremy | 2005-07-02 14:38:52 -0700Jeremy Kemper2005-07-031-37/+35
* Added support for ODBC connections to MS SQL Server so you can connect from a...David Heinemeier Hansson2005-07-011-13/+7
* Made migrations create InnoDB tables per defaultDavid Heinemeier Hansson2005-04-161-2/+2
* Fixed check_box with postgresql booleans is more work now again #995David Heinemeier Hansson2005-04-071-1/+1
* Fixed boolean queries for t/f fields in PostgreSQL #995 [dave@cherryville.org]David Heinemeier Hansson2005-04-021-1/+1
* Fixed auto-stamping of dates (created_on/updated_on) for PostgreSQL #985 [dav...David Heinemeier Hansson2005-04-021-6/+6
* Added adapter independent limit clause as a two-element array with the first ...David Heinemeier Hansson2005-03-201-1/+13
* Added type conversion before saving a record, so string-based values like "10...David Heinemeier Hansson2005-03-201-1/+1
* Fixed that SQLite3 exceptions are caught and reported properly #823 [yerejm]David Heinemeier Hansson2005-03-141-2/+2
* More incremental work on active schema for MySQLDavid Heinemeier Hansson2005-03-101-1/+1
* More incremental work on active schema for MySQLDavid Heinemeier Hansson2005-03-101-2/+3
* Added ActiveRecord::Base.colorize_logging to control whether to use colors in...David Heinemeier Hansson2005-03-061-8/+12
* Added preliminary support for an agile database migration technique (currentl...David Heinemeier Hansson2005-03-011-2/+46
* Finished polishing API docsDavid Heinemeier Hansson2005-02-231-13/+1
* Added automatic dropping/creating of test tables for running the unit tests o...David Heinemeier Hansson2005-02-201-0/+5
* Fixed documentation snafus #575, #576, #577, #585David Heinemeier Hansson2005-02-071-1/+1
* Replaced === checks with is_a? checks #502, #82 [Marcel Molina]David Heinemeier Hansson2005-01-201-3/+3
* Added SQLite3 compatibility through the sqlite3-ruby adapter by Jamis Buck #3...David Heinemeier Hansson2005-01-101-10/+11
* Fixed handling of binary content in blobs and similar fields for Ruby/MySQL a...David Heinemeier Hansson2005-01-021-3/+20
* Added Base.default_timezone accessor that determines whether to use Time.loca...David Heinemeier Hansson2004-12-281-10/+10
* Added the possibility for adapters to overwrite add_limit! to implement a dif...David Heinemeier Hansson2004-12-281-0/+4
* Added more informative exceptions in establish_connection #356 [bitsweat]David Heinemeier Hansson2004-12-221-4/+3
* Fixed that nested transactions now work by letting the outer most transaction...David Heinemeier Hansson2004-12-221-4/+4
* Changed the interface on AbstractAdapter to require that adapters return the ...David Heinemeier Hansson2004-12-191-2/+2
* Added that query benchmarking will only happen if its going to be logged anyw...David Heinemeier Hansson2004-12-191-1/+1
* Options for the new validation methods are now given as a hashDavid Heinemeier Hansson2004-12-101-1/+1