package links-sqlite3

  1. Overview
  2. Docs
SQLite database driver for the Links Programming Language

Install

Dune Dependency

Authors

Maintainers

Sources

links-0.9.6.tbz
sha256=1d573072729709287b40068971d9a0a1ed0490d24af8d8c2667f5dd174dd19c1
sha512=e83e785db688b05a42ff4f2c908fa9254f412609879a98db9420ae7cd7906b79a43bccd1ffaf0f6a0e214ec147d458e6870131eb9dd7c116fb30145eae8ecc21

Description

SQLite database driver for the Links Programming Language

Published: 01 Mar 2022

README

Links: Linking Theory to Practice for the Web

Links helps to build modern Ajax-style applications: those with significant client- and server-side components.

A typical, modern web program involves many "tiers": part of the program runs in the web browser, part runs on a web server, and part runs in specialized systems such as a relational database. To create such a program, the programmer must master a myriad of languages: the logic is written in a mixture of Java, Python, and Perl; the presentation in HTML; the GUI behavior in Javascript; and the queries are written in SQL or XQuery. There is no easy way to link these: to be sure, for example, that an HTML form or an SQL query produces the type of data that the Java code expects. This is called the impedance mismatch problem.

Links eases the impedance mismatch problem by providing a single language for all three tiers. The system is responsible for translating the code into suitable languages for each tier: for instance, translating some code into Javascript for the browser, some into Java for the server, and some into SQL to use the database.

Links incorporates ideas proven in other programming languages: database-query support from Kleisli, web-interaction proposals from PLT Scheme, and distributed-computing support from Erlang. On top of this, it adds some new web-centric features of its own.

FEATURES

  • Allows web programs to be written in a single programming language

  • Call-by-value functional language

  • Server / Client annotations

  • AJAX

  • Scalability through defunctionalised server continuations.

  • Statically typed database access a la Kleisli

  • Concurrent processes on the client and the server

  • Statically typed Erlang-esque message passing

  • Polymorphic records and variants

  • An effect system for supporting abstraction over database queries whilst guaranteeing that they can be efficiently compiled to SQL

  • Handlers for algebraic effects on the server-side and the client-side

Dependencies (4)

  1. links = version
  2. sqlite3
  3. dune >= "2.7"
  4. ocaml >= "4.08.0"

Dev Dependencies

None

Used by

None

Conflicts

None