Difference between revisions of "Applications and libraries/Database interfaces/CoddFish"

From HaskellWiki
Jump to navigation Jump to search
(→‎Introduction: Credit to the authors: Alexandra Silva and Joost Visser)
(→‎Related concepts: section added: it refers to Extensible record)
Line 5: Line 5:
 
[http://wiki.di.uminho.pt/wiki/bin/view/PURe/CoddFish CoddFish] is contanined by the Pure Project and written by [http://wiki.di.uminho.pt/wiki/bin/view/Xana/WebHome Alexandra Silva] and [http://wiki.di.uminho.pt/wiki/bin/view/Joost/WebHome Joost Visser].
 
[http://wiki.di.uminho.pt/wiki/bin/view/PURe/CoddFish CoddFish] is contanined by the Pure Project and written by [http://wiki.di.uminho.pt/wiki/bin/view/Xana/WebHome Alexandra Silva] and [http://wiki.di.uminho.pt/wiki/bin/view/Joost/WebHome Joost Visser].
 
It is another type safe and declarative approach to database managament in Haskell (I mean another than [[../HaskellDB|HaskellDB]]). It is not able yet to achieve persistency by connecting to (real-life) database managament systems. To achieve type safety, it uses [http://homepages.cwi.nl/~ralf/HList/ HList --- a Haskell library for strongly typed heterogeneous collections].
 
It is another type safe and declarative approach to database managament in Haskell (I mean another than [[../HaskellDB|HaskellDB]]). It is not able yet to achieve persistency by connecting to (real-life) database managament systems. To achieve type safety, it uses [http://homepages.cwi.nl/~ralf/HList/ HList --- a Haskell library for strongly typed heterogeneous collections].
  +
  +
== Related concepts ==
  +
  +
* [[Extensible record]]

Revision as of 19:17, 16 June 2006

Introduction

CoddFish is contanined by the Pure Project and written by Alexandra Silva and Joost Visser. It is another type safe and declarative approach to database managament in Haskell (I mean another than HaskellDB). It is not able yet to achieve persistency by connecting to (real-life) database managament systems. To achieve type safety, it uses HList --- a Haskell library for strongly typed heterogeneous collections.

Related concepts