HaskellDB is a Haskell library for expressing database queries and operations in a type safe and declarative way. HaskellDB compiles a relational algebra-like syntax into SQL, submits the operations to the database for processing, and returns the results as ordinary Haskell values.
2
votes
1answer
56 views
How do I specify a primary key on table creation with haskellDB?
Currently I am using something like this:
dbCreateTable db "MyTable" [ ("Col1", (StringT, False)), ("Col2", (StringT, False)) ]
which works fine, but i'd like to make "Col1" the primary key. Do i ...
8
votes
4answers
347 views
Haskell - How do I create an operator?
Making a ternary logic table, and I would like to make my own function for an operator that i'll call "<=>". so for example, I want to do this, but that isn't right. what's the correct way to do ...
1
vote
1answer
180 views
Datatypes with haskelldb in practice (Text, UTCTime)
I just started to look into haskelldb as a more powerful companion to persistent, as I need a more powerful tool to query the database. Almost immediately I ran into difficulties with datatypes; in ...
51
votes
1answer
666 views
How can I use HaskellDB with polymorphic fields? (Problems with overlapping instances)
I have a schema which has 6 different types of entities, but they all have a lot of things in common. I figured I could probably abstract a lot of this commonality out at the type level, but I've hit ...
10
votes
1answer
364 views
Basic example of using HaskellDB to unmap records of a table
Suppose that I have the following (PostgreSQL) table definition:
CREATE TABLE books (
id serial NOT NULL,
title character varying NOT NULL,
PRIMARY KEY (id)
);
And the following record ...
1
vote
1answer
263 views
How do I use postgresqlConnect in the Database.HaskellDB.HDBC.PostgreSQL module?
I am not quite sure how to use the postgresqlConnect function in module Database.HaskellDB.HDBC.PostgreSQL to connect to a PostgreSQL database. The Haddock documentation page only states the type ...