| GBPVR-CDBI documentation | Contained in the GBPVR-CDBI distribution. |
GBPVR::CDBI::CaptureSource - GBPVR.capture_source table
Version 0.02
oid, name, recording_source_class, epgsource_class, channel_changer_class
David Westbrook, <dwestbrook at gmail.com>
Copyright 2006 David Westbrook, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| GBPVR-CDBI documentation | Contained in the GBPVR-CDBI distribution. |
package GBPVR::CDBI::CaptureSource; use warnings; use strict; our $VERSION = '0.02'; use base 'GBPVR::CDBI'; __PACKAGE__->table('capture_source'); __PACKAGE__->columns(Primary => qw/oid/ ); __PACKAGE__->columns(All => qw/ oid name recording_source_class epgsource_class channel_changer_class / ); 1; __END__