Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In OOP languages I might write a database wrapper which encapsulates database connection, manages schema and provides few core operations, such as exec, query, prepare_and_execute. I might even have a separate database helper class which would handle the database schema, leaving the database abstraction only to handle connections. This would then be used by model wrappers/factories which use the database abstraction class to create instances of model classes. Something along the line like this UML diagram:

What would be the preferred way to design such a system in idiomatic haskell?

share|improve this question
1  
Maybe blog.ezyang.com/2010/06/databases-are-categories is worth looking at. – Alexandre C. Apr 27 '11 at 14:08
@Alexandre thanks, a good read, but I don't think it's what I was looking for :) – Masse Apr 27 '11 at 17:54
1  
Your diagram no longer exists. Can you upload it again? This question rather depends on it. – Tim Post Nov 6 '11 at 20:09

2 Answers

up vote 4 down vote accepted

The most used database abstraction library in Haskell is HDBC. It means that queries are simply represented as Strings with placeholders. Fewer people use HaskellDB which provides a type-safe way to build queries. Nothing forbids to have user data types to represent common queries and custom functions to build them.

Values in Haskell are immutable, that means that it is not useful to have a mutable object corresponding to a record in the database. Instead, I think it is more common to define user data types and functions that marshall and push/pull values of these types to/from the database.

Whenever database updates are necessary, they are likely to be run in some stateful monad under IO. This would allow to keep the connection open, for example, or do something between the requests.

Finally, functions are first class, so it is possible to construct all functions on the fly. So a function itself may encapsulate whatever information you want.

So, I think, the usual Haskell approach consists of

  • algebraic data types to represent actual data (as immutable values)
  • the rest of the application to transform these values
  • functions which generate queries (encapsulate schema details, marshal data to/from Haskell data types)
  • (optionally) a stateful monad to run queries (hide details of database access)
  • functions which run the queries (hide details of database access)
share|improve this answer
I had something similar in mind. Could you elaborate on the "a stateful monad to run queries" part? A while ago I wrote a proof of concept abstraction over HDBC where I used Reader monad to hide connection details (runDatabase would make connection, run the reader with the connection value and then close the connection). I also had ADT's representing the Person and Location and something like "getLocation :: Int -> IO Location" and "getPerson :: Int -> IO Person". For modifying db I had something like "savePerson :: Person -> IO ()". Is this what you had in mind? – Masse Apr 27 '11 at 12:48
@Masse I meant that, if, for example, you want to compile some or all statements, you run prepare on them and you need a place to keep compiled statements between queries. So you may use type DB a = StateT [(Query, Statement)] IO a to save them (I suppose that a statement is represented by a custom Query data type which implements Eq). On the top level I'd have smth like runDB :: FilePath -> DB a -> IO a, withPerson :: Query -> Key -> (Person -> (a, Maybe Person)) -> DB a... – sastanin Apr 27 '11 at 13:25

The most idiomatic way of using Haskell for databases, and the most efficient one, IMHO, is to cache the records in memory and use STM in memory transactions, so that you use the database for storage. Then, you can use transactional variables (TVar“s) for your record management. But you must define your own query language and you need a mechanism for caching/uncaching and synchronization. That is after all what java EJB3 and Hybernate does.

The package TCache define DBRefs, that are persistent STM variables with TVar semantics. They may be part of a record and point to another record and are lightweight, so you can develop your own abstraction over it. It also has a SQL like query language, including field search, joins and full text search. It has default persistence in files. You only need to define a key for your Haskell record and you have file persistence. For database persistence there is a IResource class where you define the read, write and delete operations for your records. Each record may have its own persistence. So all the database interaction are in a single location of the source code, and transactions in memory are orders of magnitude faster. TCache writes a coherent state each time that it asynchronously writes in the database. It can write synchronously too.

share|improve this answer
Can't help the feeling that there is a severe case of NIF syndrome at work here. – Masse Apr 29 at 8:39
What NIF syndrome supposed to mean? If you do not understand what I mean, please ask me for clarification. If you are not interested, a simple thanks or saying nothing is enough. If you don't feel comfortable with my answer, take a cup of tea. – agocorona Apr 29 at 15:10
*NIH. "Here". Typo. Sorry – Masse Apr 29 at 20:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.