2006-05-02 09:31:56 +08:00
|
|
|
import os
|
2009-04-11 19:41:35 +08:00
|
|
|
import sys
|
|
|
|
|
|
|
|
from django.db.backends import BaseDatabaseClient
|
2006-05-02 09:31:56 +08:00
|
|
|
|
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):
|
2009-04-11 19:41:35 +08:00
|
|
|
args = [self.executable_name,
|
|
|
|
self.connection.settings_dict['DATABASE_NAME']]
|
|
|
|
if os.name == 'nt':
|
|
|
|
sys.exit(os.system(" ".join(args)))
|
|
|
|
else:
|
|
|
|
os.execvp(self.executable_name, args)
|
|
|
|
|