mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-04 22:13:01 +01:00
Alan Orth
6e4bc630f7
This allows us to access records using their column name. I didn't notice that this was not working, as I had been testing the wrong server! See: http://initd.org/psycopg/docs/extras.html
14 lines
442 B
Python
14 lines
442 B
Python
from config import DATABASE_NAME
|
|
from config import DATABASE_USER
|
|
from config import DATABASE_PASS
|
|
from config import DATABASE_HOST
|
|
import psycopg2
|
|
import psycopg2.extras
|
|
|
|
def database_connection():
|
|
connection = psycopg2.connect("dbname={} user={} password={} host='{}'".format(DATABASE_NAME, DATABASE_USER, DATABASE_PASS, DATABASE_HOST), cursor_factory=psycopg2.extras.DictCursor)
|
|
|
|
return connection
|
|
|
|
# vim: set sw=4 ts=4 expandtab:
|