| WebFetch documentation | view source | Contained in the WebFetch distribution. |
WebFetch::Data::Record - Object for management of WebFetch data records/rows
use WebFetch::Data::Record;
WebFetch::Data::Record-mk_field_accessor( $field_name, ... );
$value = $obj->bynum( $num );
$value = $obj->fieldname;
$obj->fieldname( $value );
>
This module provides read-only access to a single record of the WebFetch data.
Returns the value of the field located by the field number provided. The first field is numbered 0.
Returns the value of the named field.
Creates accessor functions for each field name provided.
Accessor functions are created for field names and well-known names as they are defined.
So a field named "title" can be accessed by an object method of the same name, like $obj->title .
| WebFetch documentation | view source | Contained in the WebFetch distribution. |