WebFetch::Data::Record - Object for management of WebFetch data records/rows


WebFetch documentation  | view source Contained in the WebFetch distribution.

Index


NAME

Top

WebFetch::Data::Record - Object for management of WebFetch data records/rows

SYNOPSIS

Top

use WebFetch::Data::Record;

WebFetch::Data::Record-mk_field_accessor( $field_name, ... ); $value = $obj->bynum( $num ); $value = $obj->fieldname; $obj->fieldname( $value ); >

DESCRIPTION

Top

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 .

SEE ALSO

Top

WebFetch, WebFetch::Data::Record


WebFetch documentation  | view source Contained in the WebFetch distribution.