iterate-clsql

Overview

This is an extension to iterate facility.

This extensions adds ability to iterate over results of queries to databases via CLSQL.

Code is in public domain.

Syntax

The following two clauses are added to iterate:

(for vars in-clsql-query query-expression &optional (on-database clsql:*default-database*))
(generate vars in-clsql-query query-expression &optional (on-database clsql:*default-database*))

The for clause binds vars to values of columns of each successive row in result set of the query-expression.

Examples

Usage

To use this extensions, asdf-load the iterate-clsql system:

(asdf:oos 'asdf:load-op :iterate-clsql)

or add it to dependencies list of a system.

Installation

Download the tarball iterate-clsql-0.2.tar.gz and unpack it; make sure that it is loadable by ASDF. This means that the symlink to iterate-clsql.asd should be made into the directory that is in asdf:*central-registry*.

ChangeLog

Contact information

Written by Dmitry Kalyanov. Contact by e-mail or by jabber (mo3r@jabber.ru).

Send bug reports to iterate-clsql-devel mailing list.

Announcements of new version are made to iterate-clsql-announce mailing list.

Back to Common-lisp.net.