Difference between revisions of "Extensible record"

From HaskellWiki
Jump to navigation Jump to search
m (Making an ambiguous sentence clear by more explicit separation)
Line 18: Line 18:
   
 
Such systems can achieve more type safety (compared to direct SQL handling).
 
Such systems can achieve more type safety (compared to direct SQL handling).
  +
They usually formulate a [[relational algebra]] concept in a declarative language.
   
 
==== HaskellDB ====
 
==== HaskellDB ====
Line 34: Line 35:
   
 
[[Dependent type]] -- as an explanation for its relatedness here, see [http://www.dcs.st-andrews.ac.uk/~james/RESEARCH/ydtm-submitted.pdf Why Dependent Types Matter] written by Thorsten Altenkirch, Conor McBride, James McKinna -- or see at least its ''Conclusions'' section (section 8, pages 18--19).
 
[[Dependent type]] -- as an explanation for its relatedness here, see [http://www.dcs.st-andrews.ac.uk/~james/RESEARCH/ydtm-submitted.pdf Why Dependent Types Matter] written by Thorsten Altenkirch, Conor McBride, James McKinna -- or see at least its ''Conclusions'' section (section 8, pages 18--19).
  +
  +
[[Relational agebra]] implementations usually use extensible records.
   
 
[[Category:Proposals]]
 
[[Category:Proposals]]

Revision as of 08:43, 17 June 2006

Proposals, implementations can be found on the FirstClassLabels page of Haskell' Wiki.

Papers and libraries

Applications

Declarative database management

Such systems can achieve more type safety (compared to direct SQL handling). They usually formulate a relational algebra concept in a declarative language.

HaskellDB

A problem where some concepts of extensible records could be useful is described in the HaskellDB project. More precisely, the problem is described in the paper downloadable from

HaskellDB uses its own extensible record system, but see also HaskellDB#Future.

CoddFish

CoddFish is another declarative, type safe database system. As for extensible record system, it uses HList --- a Haskell library for strongly typed heterogeneous collections.

Related concepts

Dependent type -- as an explanation for its relatedness here, see Why Dependent Types Matter written by Thorsten Altenkirch, Conor McBride, James McKinna -- or see at least its Conclusions section (section 8, pages 18--19).

Relational agebra implementations usually use extensible records.