aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* More thoroughly quote table names. Exposes some issues with sqlite2 adapter. ...Jeremy Kemper2008-01-051-4/+5
* SQLite: fix rename_ and remove_column for columns with unique indexes. Closes...Jeremy Kemper2007-12-201-6/+13
* Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva]Marcel Molina2007-11-081-1/+1
* Send the correct INSERT statement when dealing with objects with only primary...Michael Koziarski2007-10-061-0/+3
* Don't implicitly assign instance variables by using them as block argumentsJeremy Kemper2007-09-301-1/+2
* Fixed rename_column for SQLite when using symbols for the column names (close...David Heinemeier Hansson2007-09-221-2/+3
* Speed up and simplify query caching.Jeremy Kemper2007-09-171-25/+18
* connection.select_rows 'sql' returns an array (rows) of arrays (field values)...Jeremy Kemper2007-09-161-0/+5
* Fixed that altering join tables in migrations would fail w/ sqlite3 #7453 [Ti...David Heinemeier Hansson2007-09-151-1/+2
* SQLite, MySQL, PostgreSQL, Oracle: quote column names in column migration SQL...Jeremy Kemper2007-05-291-1/+3
* Load database adapters on demand. Eliminates config.connection_adapters and R...Jeremy Kemper2007-05-251-32/+2
* 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
* When dealing with SQLite3, use the table_info pragma helper, so that the bind...Jamis Buck2007-01-301-1/+9
* Make sure sqlite3 driver closes open connections on disconnect (closes #7105)Jamis Buck2007-01-221-0/+5
* Made sure that connections are only removed for SQLiteDavid Heinemeier Hansson2007-01-151-1/+1
* change_column accepts :default => nil. Closes #6956.Jeremy Kemper2007-01-151-2/+3
* 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