From 13061bf20bc467c5655c2dfa280dc226a00effcd Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 20 Aug 2007 00:24:03 +0000 Subject: Refactored get_start_transaction_sql() to DatabaseOperations.start_transaction_sql(). Refs #5106 git-svn-id: http://code.djangoproject.com/svn/django/trunk@5965 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/sqlite3/base.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'django/db/backends/sqlite3') diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py index 3c35cb200d..a48ff3a93c 100644 --- a/django/db/backends/sqlite3/base.py +++ b/django/db/backends/sqlite3/base.py @@ -131,9 +131,6 @@ def _sqlite_extract(lookup_type, dt): return None return str(getattr(dt, lookup_type)) -def get_start_transaction_sql(): - return "BEGIN;" - def _sqlite_date_trunc(lookup_type, dt): try: dt = util.typecast_timestamp(dt) -- cgit v1.3