13 lines
331 B
Python
13 lines
331 B
Python
![]() |
import subprocess
|
||
|
|
||
|
from django.db.backends.base.client import BaseDatabaseClient
|
||
|
|
||
|
|
||
|
class DatabaseClient(BaseDatabaseClient):
|
||
|
executable_name = 'sqlplus'
|
||
|
|
||
|
def runshell(self):
|
||
|
conn_string = self.connection._connect_string()
|
||
|
args = [self.executable_name, "-L", conn_string]
|
||
|
subprocess.check_call(args)
|