Back Previous Next


Linguist data package - record

Syntax:

	record [array] {name}

Keyword handler:

   linguist.data.keyword.DKRecord.class

Runtime handler(s):

   linguist.data.handler.DHRecord.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