
9 Oct
2009
9 Oct
'09
5:58 p.m.
Patrick Brannan wrote:
Prelude> module HDBC HDBC.PostgreSQL
Now I would think that the line "Loading package HDBC-postgresql-2.1.0.0 ... linking ... done." means that the module is installed correctly, but I still can't execute the :module statement.
Does anyone have any ideas about where I should start? It's probably something stupid, but I'm a little worn out on searching.
That's because you're confusing package names with module names. I suspect you meant :m Database.HDBC Database.HDBC.PostgreSQL The API docs on Hackage will list the modules that any package provides. -- John