Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Haskell with a database backend for "business applications"

I would like to know if there is any possibility 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

like image 912
gruber Avatar asked May 03 '10 20:05

gruber


1 Answers

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

like image 200
Justin Ethier Avatar answered Sep 25 '22 00:09

Justin Ethier