fr33domlover 8788807048 Atomic insertUnique in SqlBackend and PostgreSQL 9.5+ support | vor 5 Jahren | |
---|---|---|
.. | ||
Database | vor 5 Jahren | |
test | vor 5 Jahren | |
ChangeLog.md | vor 5 Jahren | |
LICENSE | vor 12 Jahren | |
README.md | vor 5 Jahren | |
Setup.lhs | vor 13 Jahren | |
persistent-postgresql.cabal | vor 5 Jahren | |
test-settings.sh | vor 13 Jahren |
persistent-postgresql
A backend for the persistent
database library for the PostgreSQL database server.
To run tests on this library, you will need to have a PostgreSQL database server set up and running on your computer.
The tests will expect to connect to a database named test
using the postgres
user and no password.
This can be done either via the Postgresql command line or using the createdb
tool:
$ psql -d postgres
postgres=# CREATE DATABASE test;
CREATE DATABASE
-- or,
$ createdb test