views:

187

answers:

2

Hello,

I would like to know if there is any posiibility that I can use Haskell with small database like sql server compact so that client wont have to install any server on his desktop.

Is there any api providing sql statements and so on ... What is the best solution to achieve small database application using haskell.

thanks for help

+8  A: 

SQLite is a great option for a small, lightweight database you can embed in your application. See HackageDB for a Haskell binding.

Justin Ethier
+6  A: 

There are 57 database libraries and tools for Haskell on Hackage. The most popular is HDBC, an order of magnitude more popular than anything else, and has the HDBC-sqlite backend.

Don Stewart