2008-08-11 20:11:25 +08:00
|
|
|
from django.db.backends import BaseDatabaseClient
|
2006-05-02 09:31:56 +08:00
|
|
|
from django.conf import settings
|
|
|
|
import os
|
|
|
|
|
2008-08-11 20:11:25 +08:00
|
|
|
class DatabaseClient(BaseDatabaseClient):
|
2008-09-09 10:13:58 +08:00
|
|
|
executable_name = 'sqlite3'
|
|
|
|
|
2008-08-11 20:11:25 +08:00
|
|
|
def runshell(self):
|
|
|
|
args = ['', settings.DATABASE_NAME]
|
2008-09-09 10:13:58 +08:00
|
|
|
os.execvp(self.executable_name, args)
|