HighNeed_projekt_inz/highneed/venv/lib/python3.6/site-packages/django/db/backends/oracle/client.py
Mikhail Ronchyk ddf3d072cc first commit
2021-03-25 15:15:48 +03:00

19 lines
543 B
Python

import shutil
import subprocess
from django.db.backends.base.client import BaseDatabaseClient
class DatabaseClient(BaseDatabaseClient):
executable_name = 'sqlplus'
wrapper_name = 'rlwrap'
def runshell(self, parameters):
conn_string = self.connection._connect_string()
args = [self.executable_name, "-L", conn_string]
wrapper_path = shutil.which(self.wrapper_name)
if wrapper_path:
args = [wrapper_path, *args]
args.extend(parameters)
subprocess.run(args, check=True)