with the release update haskelldb-0.9 -> haskelldb-0.10 several things have changed. Unfortunately the API documentation does not give enough information in generall. Is there any additional uptodate documentation around?
In particular the fundamental function "connect" hast a new signature:
connect :: (forall m a .
MonadIO m => [(String,
String)] -> (Database -> m a) -> m a)
I don't know what pairs of strings this function needs. The API description is to unspecific:
The connect function takes some driver specific name, value pairs use to setup the database connection, and a database action to run.