Back Previous Next


Linguist data package - record

Syntax:

   record [array] {name}

Keyword handler:

   net.eclecity.linguist.data.keyword.DataKRecord.class

Runtime handler(s):

   net.eclecity.linguist.data.handler.DataHRecord.class

Function:

Declares a record variable or an array of records. The array size is fixed at time of compilation.

A record represents a single line of data in an SQL table. The fields of the record are defined using a specification, which is then associated with the record using set.

Example(s):

   record Customer
   record Customers 10


Back Previous Next