jgoerzen / hdbc-postgresql
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (53)
- Wiki (2)
- Graphs
-
Branch:
master
commit 827be4b834212fc45cf2
tree fec113c0da537f8a297d
parent e0898137fec82fc50187 parent cf84140558a270178245
tree fec113c0da537f8a297d
parent e0898137fec82fc50187 parent cf84140558a270178245
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Apr 13 11:00:44 -0700 2009 | |
| |
COPYING | Thu Dec 22 17:58:01 -0800 2005 | |
| |
COPYRIGHT | Wed May 02 13:49:44 -0700 2007 | |
| |
Database/ | Fri Apr 16 07:57:49 -0700 2010 | |
| |
HDBC-postgresql.cabal | Sat Apr 24 06:56:12 -0700 2010 | |
| |
Makefile | Wed Jan 28 09:27:46 -0800 2009 | |
| |
README.txt | Wed Feb 17 12:49:34 -0800 2010 | |
| |
Setup.hs | Wed Feb 17 12:42:21 -0800 2010 | |
| |
TODO | Wed Feb 04 12:30:59 -0800 2009 | |
| |
debian/ | Tue Feb 23 09:00:59 -0800 2010 | |
| |
hdbc-postgresql-helper.c | Tue Mar 28 19:31:24 -0800 2006 | |
| |
hdbc-postgresql-helper.h | Tue Mar 28 19:31:24 -0800 2006 | |
| |
pgtypes.h | Fri Jan 30 07:34:33 -0800 2009 | |
| |
testsrc/ | Sat Apr 24 06:56:31 -0700 2010 |
README.txt
Welcome to HDBC, Haskell Database Connectivity.
This package provides a database backend driver for PostgreSQL.
Please see HDBC itself for documentation on use.
This package provides one function in module Database.HDBC.PostgreSQL:
{- | Connect to a PostgreSQL server.
See <http://www.postgresql.org/docs/8.1/static/libpq.html#LIBPQ-CONNECT> for the meaning
of the connection string. -}
connectPostgreSQL :: String -> IO Connection
An example would be:
dbh <- connectPostgreSQL "host=localhost dbname=testdb user=foo"
DIFFERENCES FROM HDBC STANDARD
------------------------------
None known at this time.

