aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
...
* If only life was that simple (it didnt help)David Heinemeier Hansson2006-12-011-0/+4
* Replace the elaborate reloading connection checking scheme, just fix the Ruby...David Heinemeier Hansson2006-12-011-4/+0
* Only reload connections in development mode that supports (and requires that)...David Heinemeier Hansson2006-11-261-0/+4
* Cleanup SQLite AUTOINCREMENT: exclude sqlite_sequence table, factor out featu...Jeremy Kemper2006-11-141-2/+12
* SQLite: use AUTOINCREMENT primary key in >= 3.1.0. Closes #6588.Jeremy Kemper2006-11-091-1/+9
* SQLite: count(distinct) queries supported in >= 3.2.6, fix calculations worka...Jeremy Kemper2006-11-051-47/+32
* Make add_column use the options hash with the Sqlite Adapter. Closes #6464 [o...Michael Koziarski2006-10-241-1/+1
* 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
* r4704@asus: jeremy | 2006-06-27 12:00:19 -0700Jeremy Kemper2006-07-081-0/+1
* r4644@asus: jeremy | 2006-06-16 14:57:03 -0700Jeremy Kemper2006-06-191-0/+6
* Fixed migration trouble with SQLite when NOT NULL is used in the new definiti...David Heinemeier Hansson2006-06-031-2/+3
* Preserve MySQL boolean column defaults when changing a column in a migration....Marcel Molina2006-05-141-1/+1
* Properly quote index names in migrations (closes #4764) [John Long]Rick Olson2006-04-201-7/+1
* Do it in styleDavid Heinemeier Hansson2006-03-251-2/+2
* 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
* * Fix pagination problems when using includeMichael Koziarski2006-02-091-0/+4
* Roll back [3244]. References #3116.Jeremy Kemper2005-12-131-1/+1
* SQLite: find database file when RAILS_ROOT is a symlink. References #3116.Jeremy Kemper2005-12-081-1/+1
* Move dummy active? and reconnect! from sqlite to base adapter. References #428.Jeremy Kemper2005-12-041-13/+0
* r3095@asus: jeremy | 2005-11-15 22:40:51 -0800Jeremy Kemper2005-11-161-1/+1
* r3042@asus: jeremy | 2005-11-13 01:51:08 -0800Jeremy Kemper2005-11-131-0/+13
* Fix sqlite adaptor's detection of missing dbfile or database declarationNicholas Seckar2005-11-101-1/+1
* Changed :dbfile to :database for SQLite adapter for consistency (old key stil...David Heinemeier Hansson2005-10-301-8/+9
* Allow symbols to rename columns when using SQLite adapter. #2531 [kevin.clark...Jamis Buck2005-10-251-4/+6
* Comment out the memory leak test because it b0rks the testing environment. Up...Jamis Buck2005-10-161-1/+1
* Add option (true by default) to generate reader methods for each attribute of...Marcel Molina2005-10-071-16/+18
* Add rename_table to mysql, sqlite and postgres adapters for use in migrationsTobias Lütke2005-10-061-0/+4
* Allow in memory sqlite DBs when RAILS_ROOT is defined [blair@orcaware.com]Michael Koziarski2005-10-061-2/+4
* r3597@asus: jeremy | 2005-09-26 17:39:23 -0700Jeremy Kemper2005-09-261-5/+5
* Refactored the AbstractAdapter to be a lot less scary. Cleaned up the docs an...David Heinemeier Hansson2005-09-251-38/+53
* Standardize the interpretation of boolean columns in the Mysql and Sqlite ada...Jamis Buck2005-09-251-1/+1
* Make the sqlite adapter preserve not-null constraints and index names when al...Jamis Buck2005-09-241-3/+12
* Make sqlite adapter pass all testsJamis Buck2005-09-231-3/+9
* Add ActiveRecord::SchemaDumper for dumping a DB schema to a pure-ruby file, m...Jamis Buck2005-09-231-15/+14
* Allow add_column and create_table to specify NOT NULL #1712 [emptysands@gmail...Jamis Buck2005-07-301-1/+1
* 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-1/+113
* r1611@asus: jeremy | 2005-07-03 04:21:52 -0700Jeremy Kemper2005-07-031-1/+4
* r1603@asus: jeremy | 2005-07-02 14:38:52 -0700Jeremy Kemper2005-07-031-1/+1
* Make migrations work with the latest SQLiteDavid Heinemeier Hansson2005-06-211-10/+10
* Added preliminary support for an agile database migration technique (currentl...David Heinemeier Hansson2005-03-011-0/+17
* Added documentation for database adapters to visible RDocDavid Heinemeier Hansson2005-02-231-4/+9
* Added automatic dropping/creating of test tables for running the unit tests o...David Heinemeier Hansson2005-02-201-0/+4
* Added SQLite3 compatibility through the sqlite3-ruby adapter by Jamis Buck #3...David Heinemeier Hansson2005-01-101-73/+94
* Fixed handling of binary content in blobs and similar fields for Ruby/MySQL a...David Heinemeier Hansson2005-01-021-1/+23
* Changed the interface on AbstractAdapter to require that adapters return the ...David Heinemeier Hansson2004-12-191-2/+10
* Fixed that every successive call on the sqlite adapter prepended RAILS_ROOT a...David Heinemeier Hansson2004-12-121-1/+1