Django

Code

root/django/trunk/django/db/backends/sqlite3/base.py


Mode:

Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @9466 [9466] 11/16/08 02:48:24 mtredinnick Fixed #3501 -- Fixed date filtering in querysets for nullable date fields. …
(edit) @9060 [9060] 09/17/08 02:23:17 mtredinnick Fixed #9113 -- Improved exception message reporting when importing sqlite3 …
(edit) @8494 [8494] 08/23/08 13:01:16 mtredinnick Fixed #8214 -- Added back a stringification that was dropped during …
(edit) @8296 [8296] 08/11/08 07:11:25 russellm Fixed #5461 -- Refactored the database backend code to use classes for the …
(edit) @8276 [8276] 08/09/08 18:59:01 jacob Fixed #7921: for sqlite3 2.4.1 or later, adapt str objects to unicode, …
(edit) @8131 [8131] 07/29/08 00:09:29 mtredinnick Fixed #7560 -- Moved a lot of the value conversion preparation …
(edit) @7956 [7956] 07/18/08 17:36:31 mtredinnick Fixed #5552 -- Raise an error, rather than failing silently, when …
(edit) @7926 [7926] 07/15/08 13:47:32 mtredinnick Fixed #7411 -- worked around some possible transaction conflicts in …
(edit) @7477 [7477] 04/26/08 21:50:16 mtredinnick Merged the queryset-refactor branch into trunk. This is a big internal …
(edit) @6218 [6218] 09/14/07 16:32:25 ikelly Fixed #4896: fixed #4765: Patch for cursor.executemany using oracle and …
(edit) @6035 [6035] 09/02/07 15:04:44 adrian Fixed #5263 -- Updated docstring for sqlite3 backend. Thanks, Paul Bx
(edit) @5982 [5982] 08/19/07 22:26:55 adrian Refactored OPERATOR_MAPPING so that it exists as …
(edit) @5974 [5974] 08/19/07 21:20:33 adrian Implemented BaseDatabaseFeatures? and changed all code to access it -- …
(edit) @5970 [5970] 08/19/07 20:14:53 adrian Removed backend.dictfetchall(), as it wasn't being used anywhere
(edit) @5969 [5969] 08/19/07 20:14:03 adrian Removed backend.dictfetchmany(), as it wasn't being used anywhere
(edit) @5968 [5968] 08/19/07 20:13:12 adrian Removed backend.dictfetchone(), as it wasn't being used anywhere
(edit) @5967 [5967] 08/19/07 20:03:33 adrian Refactored quote_name() to DatabaseOperations?.quote_name(). Refs #5106
(edit) @5965 [5965] 08/19/07 19:24:03 adrian Refactored get_start_transaction_sql() to …
(edit) @5964 [5964] 08/19/07 19:21:10 adrian Refactored get_sql_sequence_reset() to …
(edit) @5963 [5963] 08/19/07 19:15:53 adrian Refactored get_sql_flush() to DatabaseOperations?.sql_flush(). Refs #5106
(edit) @5962 [5962] 08/19/07 19:04:20 adrian Refactored get_random_function_sql() to …
(edit) @5961 [5961] 08/19/07 18:59:06 adrian Refactored get_pk_default_value() to …
(edit) @5960 [5960] 08/19/07 18:53:39 adrian Refactored get_max_name_length() to DatabaseOperations?.max_name_length(). …
(edit) @5959 [5959] 08/19/07 18:24:59 adrian Refactored get_limit_offset_sql() to …
(edit) @5958 [5958] 08/19/07 18:18:43 adrian Refactored get_last_insert_id() to DatabaseOperations?.last_insert_id(). …
(edit) @5957 [5957] 08/19/07 18:13:06 adrian Refactored get_fulltext_search_sql() to …
(edit) @5956 [5956] 08/19/07 18:07:34 adrian Refactored get_drop_foreignkey_sql() to …
(edit) @5955 [5955] 08/19/07 18:03:38 adrian Refactored get_deferrable_sql() to DatabaseOperations?.deferrable_sql(). …
(edit) @5953 [5953] 08/19/07 17:55:05 adrian Refactored get_datetime_cast_sql() to …
(edit) @5952 [5952] 08/19/07 17:47:43 adrian Refactored get_date_trunc_sql() to DatabaseOperations?.date_trunc_sql(). …
(edit) @5951 [5951] 08/19/07 17:40:06 adrian Refactored get_date_extract_sql() to …
(edit) @5950 [5950] 08/19/07 17:29:57 adrian Began implementing BaseDatabaseOperations? class for every database …
(edit) @5949 [5949] 08/19/07 16:30:57 adrian Refactored all database backends to inherit from a common base class to …
(edit) @5609 [5609] 07/04/07 07:11:04 mtredinnick Merged Unicode branch into trunk (r4952:5608). This should be …
(edit) @5555 [5555] 06/27/07 13:58:10 jacob Fixed #1465: added support for regex lookups. Thanks, Tom Tobin.
(edit) @5519 [5519] 06/23/07 09:16:00 mtredinnick Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. …
(edit) @5302 [5302] 05/20/07 20:29:58 mtredinnick Fixed #2365, #3324 -- Renamed FloatField? to DecimalField? and changed the …
(edit) @5076 [5076] 04/25/07 05:18:56 mtredinnick Fixed #3450 -- Exposed IntegrityError in a backend-neutral fashion. This …
(edit) @4937 [4937] 04/05/07 21:25:58 russellm Fixed #3790 -- Fixed a problem with sequence resetting during fixture …
(edit) @4691 [4691] 03/09/07 01:55:40 mtredinnick Fixed #3024 -- Fixed database commit() and rollback() behaviour so it …
(edit) @4659 [4659] 03/01/07 07:11:08 russellm Fixes #2333 -- Added test fixtures framework.
(edit) @4610 [4610] 02/26/07 11:33:27 jacob Fixed #3390: the serializer can now contain forward references. Thanks, …
(edit) @4265 [4265] 12/30/06 00:25:49 adrian Fixed #3191 -- Set 'svn:eol-style native' on the files that didn't have …
(edit) @4048 [4048] 11/06/06 23:17:38 jacob Fixed #2866: Added DATABASE_OPTIONS setting which gets passed as extra …
(edit) @3818 [3818] 09/24/06 20:53:34 mtredinnick Fixed #2772 -- Made SQLite support work correctly with Python 2.5 …
(edit) @3723 [3723] 09/05/06 08:32:08 russellm Fixes #2658 -- Modified SQLite cursor close() method for in-memory …
(edit) @3115 [3115] 06/08/06 10:14:06 mtredinnick Fixed #2108 -- allow saving of empty models, rather than just dropping …
(edit) @3073 [3073] 06/03/06 18:28:24 adrian Fixed #593 -- Added 'search' DB-API lookup type, which does full-text …
(edit) @2993 [2993] 05/26/06 13:58:46 adrian Fixed #1673 -- Every database backend now raises ImproperlyConfigured? if …
(edit) @2851 [2851] 05/05/06 22:27:49 adrian Fixed #1777 -- Fixed bug in date conversion in SQLite backend. Thanks, …
(copy) @2809 [2809] 05/01/06 20:31:56 adrian MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly …
copied from django/branches/magic-removal/django/db/backends/sqlite3/base.py:
(edit) @2732 [2732] 04/23/06 16:45:36 adrian magic-removal: Fixed #1373 -- Factored out database-specific 'DROP …
Note: See TracRevisionLog for help on using the revision log.