RecordSet::information - jcobban/Genealogy GitHub Wiki

$recordSet->information

Up: class RecordSet

This protected member is an associative array of named characteristics of the table:

parameter description
'table' SQL internal table name used in SQL commands.
'name' The external name of the table to be shown to users.
'prime' The primary key name for the table. The key name is in lower case so it will match the field name in the query response. If multiple fields are required to uniquely identify a record then this is an array of field names.
'srvmg' true if the setting of the primary key is managed by the database server for new records, and false if it is managed by the application.
'fldcount' Not currently used. This is a number which is greater than or equal to the number of fields in the unique record identifier, and less than or equal to the number of fields in the record.
'order' Default value of the ORDER BY clase for SELECT operations on this table.
'classname' Name of the class that implemeneets the interface to this table.
'initrow' Default initial row. This provides information on names, default values, and types of the fields in the table. See Record::$initRow for details.

Next: $recordset->parms