2014-03-09 19:00:42 +08:00
|
|
|
import subprocess
|
2009-04-11 19:41:35 +08:00
|
|
|
|
2015-01-13 04:20:40 +08:00
|
|
|
from django.db.backends.base.client import BaseDatabaseClient
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2013-07-08 08:39:54 +08:00
|
|
|
|
2008-08-11 20:11:25 +08:00
|
|
|
class DatabaseClient(BaseDatabaseClient):
|
2008-09-09 10:13:58 +08:00
|
|
|
executable_name = 'sqlite3'
|
|
|
|
|
2020-04-14 15:56:40 +08:00
|
|
|
def runshell(self, parameters):
|
2019-12-15 07:13:33 +08:00
|
|
|
# TODO: Remove str() when dropping support for PY37.
|
|
|
|
# args parameter accepts path-like objects on Windows since Python 3.8.
|
2009-04-11 19:41:35 +08:00
|
|
|
args = [self.executable_name,
|
2019-12-15 07:13:33 +08:00
|
|
|
str(self.connection.settings_dict['NAME'])]
|
2020-04-14 15:56:40 +08:00
|
|
|
args.extend(parameters)
|
2019-08-23 16:53:36 +08:00
|
|
|
subprocess.run(args, check=True)
|