|
NAMEDBIx::SQLEngine::Record::Accessors - Add Methods for ColumnsSYNOPSISSetup: Several ways to create a class.my $sqldb = DBIx::SQLEngine->new( ... ); $class_name = $sqldb->record_class( $table_name, undef, 'Accessors' ); $sqldb->record_class( $table_name, 'My::Record', 'Accessors' ); package My::Record; use DBIx::SQLEngine::Record::Class '-isasubclass', 'Accessors'; My::Record->table( $sqldb->table($table_name) ); Accessors: Create methods for columns. $class_name->install_accessors( %column_info ); DESCRIPTIONThis package provides automatic method generation for DBIx::SQLEngine::Record objects.Don't use this module directly; instead, pass its name as a trait when you create a new record class. This package provides a multiply-composable collection of functionality for Record classes. It is combined with the base class and other traits by DBIx::SQLEngine::Record::Class. This package is not yet complete. ACCESSORS INTERFACEAutoloader
SIMPLE RECORD INTERFACEGetting and Changing ValuesSimple interface for applying changes.
SEE ALSOFor more about the Record classes, see DBIx::SQLEngine::Record::Class.See DBIx::SQLEngine for the overall interface and developer documentation. See DBIx::SQLEngine::Docs::ReadMe for general information about this distribution, including installation and license information.
Visit the GSP FreeBSD Man Page Interface. |