summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3/client.py
blob: a71005fd5b7ee931645edecab44a3b95d7946abb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import subprocess

from django.db.backends.base.client import BaseDatabaseClient


class DatabaseClient(BaseDatabaseClient):
    executable_name = 'sqlite3'

    def runshell(self, parameters):
        # TODO: Remove str() when dropping support for PY37.
        # args parameter accepts path-like objects on Windows since Python 3.8.
        args = [self.executable_name,
                str(self.connection.settings_dict['NAME'])]
        args.extend(parameters)
        subprocess.run(args, check=True)