app/django/db/backends/postgresql/client.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Wed, 04 Mar 2009 20:50:27 +0000 (2009-03-04)
changeset 1649 495171ad94c0
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Rename unused loop variables to _ in soc.views.helper.params module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed
from django.db.backends import BaseDatabaseClient
from django.conf import settings
import os

class DatabaseClient(BaseDatabaseClient):
    executable_name = 'psql'

    def runshell(self):
        args = [self.executable_name]
        if settings.DATABASE_USER:
            args += ["-U", settings.DATABASE_USER]
        if settings.DATABASE_PASSWORD:
            args += ["-W"]
        if settings.DATABASE_HOST:
            args.extend(["-h", settings.DATABASE_HOST])
        if settings.DATABASE_PORT:
            args.extend(["-p", str(settings.DATABASE_PORT)])
        args += [settings.DATABASE_NAME]
        os.execvp(self.executable_name, args)