Liz::TrackSet::Record - module for Record objects of the TrackSet
use Liz::TrackSet; $recordset = new Liz::TrackSet;
$record = $recordset->Record; $record = $recordset->Record( $identifier );
$record->update;
Provide object oriented access to records in a TrackSet. Usually not accessed directly, but rather through the Liz::TrackSet object and its Record method.
Create a new Record object from a TrackSet object.
1 Liz::TrackSet object 2 ID to created Record object with (default: none = new record)
1 instantiated object
It is not intended to call this method directly, but rather indirectly through the Liz::TrackSet module.
$recordset = new Liz::TrackSet; $record = $recordset->Record; $record = $recordset->Record( $identifier );
Update a Record object in the Liz::TrackSet database.
1 identifier with which the object was updated (undef = error)
$identifier = $record->update;
Delete the Liz::TrackSet::Record object from the database.
1 flag: whether action was successful
$record->delete;
The following methods allow you to inspect and/or change certain fields of the Liz::TrackSet::Record object.
Return the Created timestamp of the Liz::TrackSet::Record object.
1 current timestamp value of the Created date
$created = $record->Created;
Return or set the Expired timestamp of the Liz::TrackSet::Record object.
1 new timestamp of the Expired date (default: no change)
1 current/old timestamp value of the Expired date
$record->Expired( $expired ); $expired = $record->Expired;
Return or set the ExternalID of the Liz::TrackSet::Record object.
1 new externalID (default: no change)
1 current/old externalID
$record->ExternalID( $externalID ); $externalID = $record->ExternalID;
Return the Identifier of the Liz::TrackSet::Record object.
1 current Identifier of the object
$identifier = $record->Identifier;
Return or set the Options information of the Liz::TrackSet::Record object.
1 new name value of the Options (default: no change)
1 current/old name value of the Options
$record->Options( $options ); $options = $record->Options;
Return the Updated timestamp of the Liz::TrackSet::Record object.
1 current timestamp value of the Updated date
$updated = $record->Updated;
Elizabeth Mattijsen ( lizperl@INC.nl )
(C) 1998-1999 International Network Consultants
First version of this true Perl module. Copied from the Liz::EventSet::Event module.