app/django/db/backends/postgresql/client.py
author Sverre Rabbelier <srabbelier@gmail.com>
Mon, 30 Mar 2009 22:52:15 +0000
changeset 2037 3f355dca3679
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Added nr_applications and nr_mentors These two properties can then be used to store the amount of applications and mentors an organization has. Patch by: Sverre Rabbelier

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)