Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

root/trunk/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb


Mode:

Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @9222 [9222] 04/04/08 11:45:08 nzkoz Tiny change to allow AR based creation of TIME columns in sqlite. Closes …
(edit) @8571 [8571] 01/05/08 14:58:28 bitsweat More thoroughly quote table names. Exposes some issues with sqlite2 …
(edit) @8453 [8453] 12/20/07 22:28:12 bitsweat SQLite: fix rename_ and remove_column for columns with unique indexes. …
(edit) @8113 [8113] 11/08/07 03:37:16 marcel Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva]
(edit) @7753 [7753] 10/06/07 00:49:58 nzkoz Send the correct INSERT statement when dealing with objects with only …
(edit) @7691 [7691] 09/30/07 06:22:39 bitsweat Don't implicitly assign instance variables by using them as block …
(edit) @7563 [7563] 09/22/07 18:23:30 david Fixed rename_column for SQLite when using symbols for the column names …
(edit) @7498 [7498] 09/17/07 06:15:58 bitsweat Speed up and simplify query caching.
(edit) @7497 [7497] 09/16/07 03:32:47 bitsweat connection.select_rows 'sql' returns an array (rows) of arrays (field …
(edit) @7484 [7484] 09/15/07 21:23:05 david Fixed that altering join tables in migrations would fail w/ sqlite3 #7453
(edit) @6889 [6889] 05/29/07 07:21:41 bitsweat SQLite, MySQL, PostgreSQL, Oracle: quote column names in column migration …
(edit) @6833 [6833] 05/25/07 03:19:35 bitsweat Load database adapters on demand. Eliminates config.connection_adapters …
(edit) @6469 [6469] 03/27/07 06:57:53 rick Add helpful debugging info to the ActiveRecord::StatementInvalid exception …
(edit) @6449 [6449] 03/19/07 12:49:23 bitsweat SQLite: binary escaping works with ='u'. Closes #7862.
(edit) @6091 [6091] 01/30/07 03:14:55 minam When dealing with SQLite3, use the table_info pragma helper, so that the …
(edit) @6012 [6012] 01/22/07 23:07:54 minam Make sure sqlite3 driver closes open connections on disconnect (closes …
(edit) @5955 [5955] 01/15/07 22:12:40 david Made sure that connections are only removed for SQLite
(edit) @5937 [5937] 01/15/07 02:22:53 bitsweat change_column accepts :default => nil. Closes #6956.
(edit) @5658 [5658] 12/01/06 05:56:51 david If only life was that simple (it didnt help)
(edit) @5656 [5656] 12/01/06 05:37:56 david Replace the elaborate reloading connection checking scheme, just fix the …
(edit) @5637 [5637] 11/26/06 22:10:55 david Only reload connections in development mode that supports (and requires …
(edit) @5520 [5520] 11/14/06 03:32:16 bitsweat Cleanup SQLite AUTOINCREMENT: exclude sqlite_sequence table, factor out …
(edit) @5477 [5477] 11/09/06 21:17:43 bitsweat SQLite: use AUTOINCREMENT primary key in >= 3.1.0. Closes #6588.
(edit) @5426 [5426] 11/05/06 02:01:31 bitsweat SQLite: count(distinct) queries supported in >= 3.2.6, fix calculations …
(edit) @5353 [5353] 10/24/06 07:32:18 nzkoz Make add_column use the options hash with the Sqlite Adapter. Closes #6464
(edit) @5260 [5260] 10/09/06 02:14:36 david Fixed rename_table on SQLite tables with indexes defined (closes #5942) …
(edit) @5258 [5258] 10/09/06 02:02:27 david Added timeout option to SQLite3 configurations to deal more gracefully …
(edit) @4596 [4596] 07/08/06 20:35:56 bitsweat r4704@asus: jeremy | 2006-06-27 12:00:19 -0700 decimal r4705@asus: …
(edit) @4460 [4460] 06/19/06 22:48:51 bitsweat r4644@asus: jeremy | 2006-06-16 14:57:03 -0700 locking r4645@asus: …
(edit) @4419 [4419] 06/03/06 21:41:40 david Fixed migration trouble with SQLite when NOT NULL is used in the new …
(edit) @4340 [4340] 05/14/06 18:37:22 marcel Preserve MySQL boolean column defaults when changing a column in a …
(edit) @4239 [4239] 04/20/06 02:41:05 rick Properly quote index names in migrations (closes #4764) [John Long]
(edit) @4032 [4032] 03/25/06 23:10:09 david Do it in style
(edit) @3998 [3998] 03/20/06 06:09:57 david Fixed that schema changes while the database was open would break any …
(edit) @3997 [3997] 03/20/06 06:05:16 david Fixed that schema changes while the database was open would break any …
(edit) @3979 [3979] 03/19/06 17:42:51 rick add support for COUNT(DISTINCT id) queries in sqlite2 (closes #4300) [Rick …
(edit) @3553 [3553] 02/09/06 09:17:40 nzkoz * Fix pagination problems when using include * Introduce Unit Tests for …
(edit) @3294 [3294] 12/13/05 17:32:39 bitsweat Roll back [3244]. References #3116.
(edit) @3244 [3244] 12/08/05 04:51:18 bitsweat SQLite: find database file when RAILS_ROOT is a symlink. References …
(edit) @3219 [3219] 12/04/05 06:15:04 bitsweat Move dummy active? and reconnect! from sqlite to base adapter. References …
(edit) @3051 [3051] 11/16/05 08:16:54 bitsweat r3095@asus: jeremy | 2005-11-15 22:40:51 -0800 Ticket #1874 - Firebird …
(edit) @3001 [3001] 11/13/05 10:03:03 bitsweat r3042@asus: jeremy | 2005-11-13 01:51:08 -0800 MySQL active? and …
(edit) @2962 [2962] 11/10/05 00:16:23 ulysses Fix sqlite adaptor's detection of missing dbfile or database declaration
(edit) @2825 [2825] 10/30/05 08:10:04 david Changed :dbfile to :database for SQLite adapter for consistency (old key …
(edit) @2731 [2731] 10/25/05 19:28:53 minam Allow symbols to rename columns when using SQLite adapter. #2531
(edit) @2636 [2636] 10/16/05 02:30:04 minam Comment out the memory leak test because it b0rks the testing environment. …
(edit) @2483 [2483] 10/07/05 00:53:05 marcel Add option (true by default) to generate reader methods for each attribute …
(edit) @2477 [2477] 10/06/05 14:10:45 xal Add rename_table to mysql, sqlite and postgres adapters for use in …
(edit) @2476 [2476] 10/06/05 04:56:00 nzkoz Allow in memory sqlite DBs when RAILS_ROOT is defined [blair@orcaware.com]
(edit) @2351 [2351] 09/26/05 21:04:36 bitsweat r3597@asus: jeremy | 2005-09-26 17:39:23 -0700 Minor improvement to …
(edit) @2339 [2339] 09/25/05 17:56:03 david Refactored the AbstractAdapter to be a lot less scary. Cleaned up the docs …
(edit) @2335 [2335] 09/25/05 15:49:35 minam Standardize the interpretation of boolean columns in the Mysql and Sqlite …
(edit) @2318 [2318] 09/24/05 00:33:47 minam Make the sqlite adapter preserve not-null constraints and index names when …
(edit) @2315 [2315] 09/23/05 15:00:56 minam Make sqlite adapter pass all tests
(edit) @2312 [2312] 09/23/05 13:29:33 minam Add ActiveRecord::SchemaDumper for dumping a DB schema to a pure-ruby …
(edit) @1955 [1955] 07/30/05 10:16:21 minam Allow add_column and create_table to specify NOT NULL #1712
(edit) @1912 [1912] 07/24/05 14:01:35 david Made Oracle a first-class connection adapter by adhering closer to …
(edit) @1893 [1893] 07/22/05 19:58:03 david Added migration support for SQLite (using temporary tables to simulate …
(edit) @1629 [1629] 07/03/05 08:32:27 bitsweat r1611@asus: jeremy | 2005-07-03 04:21:52 -0700 No longer pass …
(edit) @1622 [1622] 07/03/05 08:31:14 bitsweat r1603@asus: jeremy | 2005-07-02 14:38:52 -0700 Faster …
(edit) @1458 [1458] 06/21/05 06:00:17 david Make migrations work with the latest SQLite
(edit) @818 [818] 03/01/05 14:27:32 david Added preliminary support for an agile database migration technique …
(edit) @771 [771] 02/23/05 17:03:12 david Added documentation for database adapters to visible RDoc
(edit) @719 [719] 02/20/05 21:21:41 david Added automatic dropping/creating of test tables for running the unit …
(edit) @374 [374] 01/10/05 23:09:51 david Added SQLite3 compatibility through the sqlite3-ruby adapter by Jamis Buck …
(edit) @309 [309] 01/02/05 15:09:03 david Fixed handling of binary content in blobs and similar fields for …
(edit) @228 [228] 12/19/04 16:21:55 david Changed the interface on AbstractAdapter to require that adapters return …
(edit) @139 [139] 12/12/04 22:19:48 david Fixed that every successive call on the sqlite adapter prepended …
(edit) @34 [34] 12/01/04 11:26:47 david Added relative path search for sqlite dbfiles in database.yml (if …
(add) @4 [4] 11/24/04 01:04:44 david Initial
Note: See TracRevisionLog for help on using the revision log.