mirror of
https://github.com/django/django.git
synced 2025-10-27 23:56:08 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@5572 bcc190cf-cafb-0310-a4f2-bffc1f526a37
12 lines
320 B
Python
12 lines
320 B
Python
from django.conf import settings
|
|
import os
|
|
|
|
def runshell():
|
|
dsn = settings.DATABASE_USER
|
|
if settings.DATABASE_PASSWORD:
|
|
dsn += "/%s" % settings.DATABASE_PASSWORD
|
|
if settings.DATABASE_NAME:
|
|
dsn += "@%s" % settings.DATABASE_NAME
|
|
args = ["sqlplus", "-L", dsn]
|
|
os.execvp("sqlplus", args)
|