1
0
mirror of https://github.com/django/django.git synced 2025-10-28 08:06:09 +00:00

boulder-oracle-sprint: Return DebugCursorWrapper if DEBUG == True like other

backends.  Return None rather than empty string for get_transaction_start_sql 
to conform with other similar methods.


git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@4776 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Boulder Sprinters
2007-03-22 17:10:16 +00:00
parent 2c300b1dc6
commit 4a4417787b
2 changed files with 7 additions and 7 deletions

View File

@@ -1653,7 +1653,8 @@ def execute_from_command_line(action_mapping=DEFAULT_ACTION_MAPPING, argv=None):
parser.print_usage_and_exit()
if action not in NO_SQL_TRANSACTION:
from django.db import backend
print style.SQL_KEYWORD(backend.get_start_transaction_sql())
if backend.get_start_transaction_sql():
print style.SQL_KEYWORD(backend.get_start_transaction_sql())
for mod in mod_list:
if action == 'reset':
output = action_mapping[action](mod, options.interactive)