HDBC-postgresql: PostgreSQL driver for HDBC

[ bsd3, database, library ] [ Propose Tags ]

This package provides a PostgreSQL driver for HDBC


[Skip to Readme]

Modules

[Index]

Flags

Automatic Flags
NameDescriptionDefault
splitbase

Choose the new smaller, split-up package.

Enabled
buildtests

Build the executable to run unit tests

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 1.0.1.0, 1.1.3.0, 1.1.4.0, 1.1.6.0, 2.0.0.0, 2.1.0.0, 2.2.0.0, 2.2.3.0, 2.2.3.1, 2.2.3.2, 2.2.3.3, 2.3.2.0, 2.3.2.1, 2.3.2.2, 2.3.2.3, 2.3.2.4, 2.3.2.5, 2.3.2.6, 2.3.2.7, 2.3.2.8, 2.4.0.0, 2.5.0.0, 2.5.0.1
Dependencies base (>=3 && <4.5), bytestring, containers, convertible, HDBC (>=2.2.0), HUnit, mtl, old-locale, old-time, parsec, QuickCheck, testpack, time, utf8-string [details]
License LicenseRef-LGPL
Copyright Copyright (c) 2005-2010 John Goerzen
Author John Goerzen
Maintainer John Goerzen <jgoerzen@complete.org>
Revised Revision 1 made by AdamBergmark at 2015-05-25T18:16:06Z
Category Database
Home page http://software.complete.org/hdbc-postgresql
Uploaded by JohnGoerzen at 2010-02-17T21:00:43Z
Distributions Debian:2.3.2.7, NixOS:2.5.0.1
Reverse Dependencies 11 direct, 47 indirect [details]
Executables runtests
Downloads 25880 total (88 in the last 30 days)
Rating 1.25 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for HDBC-postgresql-2.2.3.0

[back to package description]
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.