BerkeleyDBXML: Berkeley DB and Berkeley DB/XML binding for Haskell

[ bsd3, database, library ] [ Propose Tags ]

Berkeley DB and Berkeley DB/XML binding for Haskell


[Skip to Readme]

Modules

  • Database
    • Berkeley
      • Database.Berkeley.Db
      • Database.Berkeley.DbXml

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.6.1, 0.6.2, 0.7, 0.7.1, 0.7.2
Dependencies base [details]
License BSD-3-Clause
Copyright (c) Stephen Blackheath
Author Stephen Blackheath
Maintainer http://blacksapphire.com/antispam/
Category Database
Uploaded by StephenBlackheath at 2008-09-23T13:05:23Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 10703 total (28 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2017-01-03 [all 8 reports]

Readme for BerkeleyDBXML-0.1

[back to package description]
Berkeley DB / Berkeley DB/XML binding for Haskell
Version 0.1  23 Sep 2008
by Stephen Blackheath

email me: http://blacksapphire.com/antispam/
darcs repository: http://blacksapphire.com/BerkeleyDBXML/


Berkeley DB/XML is a powerful, fully transactional, XML-based database that uses
XQuery as its query language.  You can download it here:

http://www.oracle.com/database/berkeley-db/xml/index.html

This package provides a Haskell binding for Berkeley DB/XML.  It is a tolerable
subset of the API, and I hope to improve it over time.  I have stuck closely to
the C++ API, with some minor changes where a Haskell idiom seemed appropriate.
I hope that people will develop higher level wrappers for it.  I have had great
success with the "pickler" interfaces in the HXT library.  In a future version
of this package I will give some examples.

This package is in its very early stages, and needs some work, but it should
allow you to write a fairly serious application.  If you find some part of the
API that is missing, and would like it added, please contact me.

I hope this package helps make Haskell better.  I am partly motivated by a
belief that SQL is holding us back.  An advanced language should have an
advanced database.

If you just want Berkeley DB without Berkeley DB/XML, you should be able to
achieve this easily by modifying the BerkeleyDBXML.cabal file.  The Berkeley DB
parts do not depend on the Berkeley DB/XML parts.  Some time I will make this
easier.

To install, use the standard Cabal install procedure:

runhaskell Setup.hs configure
runhaskell Setup.hs build
sudo runhaskell Setup.hs install

If Berkeley DB or DB/XML is not installed in the default location of /usr or
/usr/local, you will need to specify the paths in this way:

runhaskell Setup.hs configure \
    --extra-include-dirs=/usr/local/dbxml-2.4.13/include/dbxml/ \
    --extra-lib-dirs=/usr/local/dbxml-2.4.13/lib/

Cabal does not seem to check these very well. If you get the lib directory
wrong, you won't find out until you try to build the examples.

See the examples/ directory.