caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [ANN] ORM-0.5 and Dyntype-0.7
@ 2010-02-18 12:20 Thomas Gazagnaire
  2010-02-18 18:13 ` Thomas Gazagnaire
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Gazagnaire @ 2010-02-18 12:20 UTC (permalink / raw)
  To: caml-list

[-- Attachment #1: Type: text/plain, Size: 1136 bytes --]

We are pleased to announce a beta release of an Object-Relational Mapper
(ORM) library for OCaml.  It is implemented as a type-conv syntax extension
which auto-generates database save and query functions based on type
declarations.

You can obtain the ORM from Github at http://github.com/mirage/orm , and
GODI packages and MacPorts will be available shortly.  Please report issues
to mirage@recoil.org or use the Github issue tracker.

Some example code is:

type t = { foo: string; bar: int } with orm
let db = t_init "my.db" in
t_save { foo="t1"; bar=1 } db;
t_get ~foo:(`Contains "t") db

The only backend supported currently in SQLite, but we are working on some
alternative non-SQL backends (such as Tokyo Cabinet and a git-based version
controlled database).  This beta release is a preview to get feedback and
testing from a wider audience.

The Dyntype library provides a convenient way of manipulating types and
values at run-time without having to dive into camlp4.  It is described more
fully in a WGT2010 paper at:
http://www.cl.cam.ac.uk/research/srg/netos/papers/2010-dyntype-wgt.pdf

Thomas Gazagnaire
Anil Madhavapeddy

[-- Attachment #2: Type: text/html, Size: 1390 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [ANN] ORM-0.5 and Dyntype-0.7
  2010-02-18 12:20 [ANN] ORM-0.5 and Dyntype-0.7 Thomas Gazagnaire
@ 2010-02-18 18:13 ` Thomas Gazagnaire
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Gazagnaire @ 2010-02-18 18:13 UTC (permalink / raw)
  To: caml-list

> You can obtain the ORM from Github at http://github.com/mirage/orm , and GODI packages and MacPorts will be available shortly.

Normally, the packages are now available in GODI. Please report any
issues that you can have with these to mirage@recoil.org.

- Thomas


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-02-18 18:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-18 12:20 [ANN] ORM-0.5 and Dyntype-0.7 Thomas Gazagnaire
2010-02-18 18:13 ` Thomas Gazagnaire

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).