Kaya 0.5.3 reference for DB::DBIncResult

List of functions and data types in DB

DB::DBIncResult<a>

Constructors

Usage

DBIncResult holds data about the result of an incremental query, if the database-specific library supports these.

An incremental query returns data only one row at a time, which may save memory on large result sets. Depending on the internal implementation in the database-specific library, the rows field may not contain useful information. Database-specific libraries should throw an Exception if an attempt is made to read more rows than exist.

res = incExec(conn,"SELECT id,name FROM People");
row = getRow(res);
// row[0] = DBInt(id)
// row[1] = DBText(name)

Related

kaya@kayalang.org | Last modified 29 November 2011 | Supported by Durham CompSoc | Powered by Kaya