https://mlin.github.io/ocaml-sqlite3EZ/
Thin wrapper for sqlite3-ocaml with a simplified interface
https://mlin.github.io/ocaml-sqlite3EZ/
Last synced: 7 months ago
JSON representation
Thin wrapper for sqlite3-ocaml with a simplified interface
- Host: GitHub
- URL: https://mlin.github.io/ocaml-sqlite3EZ/
- Owner: mlin
- Created: 2010-10-13T02:11:04.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2015-04-22T14:05:56.000Z (about 11 years ago)
- Last Synced: 2025-07-22T03:30:57.196Z (11 months ago)
- Language: OCaml
- Homepage:
- Size: 199 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
- awesome-ocaml - Sqlite3EZ
README
# [sqlite3EZ](http://github.com/mlin/ocaml-sqlite3EZ)
A thin wrapper for [sqlite3-ocaml](https://bitbucket.org/mmottl/sqlite3-ocaml)
with a simplified interface. Query results are processed with a functional
map/fold, transactions are aborted by exceptions, resource management is
handled by the garbage collector, etc.
### Installation
sqlite3EZ is available in [OPAM](http://opam.ocamlpro.com):
`opam install sqlite3EZ`. The findlib package name is also `sqlite3EZ`.
Manual build (with findlib): install
[sqlite3-ocaml](https://bitbucket.org/mmottl/sqlite3-ocaml) and
[ocaml+twt](https://github.com/mlin/twt);
`./configure && make && make install`
### [API documentation](http://mlin.github.io/ocaml-sqlite3EZ/Sqlite3EZ.html)