Applications and libraries/Database interfaces: Difference between revisions
No edit summary |
(Add link to hackage for HSQL) |
||
Line 21: | Line 21: | ||
;[http://sourceforge.net/forum/forum.php?forum_id=350240 HSQL] | ;[http://sourceforge.net/forum/forum.php?forum_id=350240 HSQL] | ||
:HSQL is a simple library which provides an interface to multiple databases. MySQL, PostgreSQL, ODBC, SQLite and Oracle are currently supported. It is part of [http://htoolkit.sourceforge.net/ HToolkit]. | :HSQL is a simple library which provides an interface to multiple databases. MySQL, PostgreSQL, ODBC, SQLite and Oracle are currently supported. It is part of [http://htoolkit.sourceforge.net/ HToolkit].([http://hackage.haskell.org/package/hsql HSQL in Hackage]) | ||
=== Non-current === | === Non-current === |
Revision as of 13:43, 15 May 2012
Libraries
Current
- Takusen
- A library to interface to Oracle, Sqlite, and Postgres, with an API based on a left-fold enumerator. Now hosted at code.haskell.org. (Takusen in Hackage)
- Database Supported Haskell
- DSH is a Haskell library for database-supported program execution. Using this library a relational database management system (RDBMS) can be used as a coprocessor for the Haskell programming language, especially for those program fragments that carry out data-intensive and data-parallel computation.
- HDBC
- HDBC is modeled loosely on Perl's DBI interface, though it has also been influenced by Python's DB-API v2, JDBC in Java, and HSQL in Haskell. Supports SQLite3, PostgreSQL, ODBC (including MySQL). (HDBC in Hackage)
- HaskellDB
- Daan Leijen's original HaskellDB, and an updated version that works with current Haskell implementations and is relatively platform-independent. HaskellDB is a combinator library for expressing queries and other operations on relational databases in a type safe and declarative way. All the queries and operations are completely expressed within Haskell, no embedded (SQL) commands are needed. This close integration makes it possible to do arbitrary computations on the database (like computing the transitive closure). (HaskellDB in Hackage)
- Berkeley DB/DB XML binding
- See BerkeleyDBXML in Hackage
- HSQL
- HSQL is a simple library which provides an interface to multiple databases. MySQL, PostgreSQL, ODBC, SQLite and Oracle are currently supported. It is part of HToolkit.(HSQL in Hackage)
Non-current
Move these to [#Current] if they are updated.
Discontinued
- CoddFish
- PURe See a separate Haskell Wiki page on it. It is another type safe and declarative approach to database managament in Haskell. (Development discontinued in 2006)
- VooDooM
- PURe VooDooM reads VDM-SL specifications and applies transformation rules to the datatypes that are defined in them to obtain a relational representation for these datatypes. The relational representation can be exported as VDM-SL datatypes (inserted back into the original specification) or SQL table definitions (which can be fed to a relational DBMS). (Development discontinued in 2006)
- HaSQL
- HaSQL is a Haskell to ODBC interface. HaSQL allows Haskell program to run SQL queries against an ODBC compliant database. Queries with parameters are supported. Data is retrieved from the database as a lazy list. (Development dicontinued.)
- MySQL-HS
- MySQL-HS is an interface to the MySQL database.
- Note: Development was discontinued on 2004-09-21.
Hackage
Related concepts
This page contains a list of libraries and tools in a certain category. For a comprehensive list of such pages, see Applications and libraries.