Bio-MAGETAB
view release on metacpan or search on metacpan
lib/Bio/MAGETAB/Util/Persistence.pm view on Meta::CPAN
# written to ensure the delegated calls are functioning correctly.
has 'store' => ( is => 'rw',
isa => 'Tangram::Storage',
handles => [qw( insert
select
update
erase
id
count
sum
cursor
remote )] );
has 'dbparams' => ( is => 'ro',
isa => ArrayRef,
required => 1,
auto_deref => 1, );
sub BUILD {
my ( $self, $params ) = @_;
lib/Bio/MAGETAB/Util/Persistence.pm view on Meta::CPAN
=item update
=item erase
=item id
=item count
=item sum
=item cursor
=item remote
All these methods are delegated directly to the Tangram::Storage
object created by the C<connect> method, and contained within the
Persistence object. Please see the Tangram documentation for more
information on these methods.
=back
( run in 0.233 second using v1.01-cache-2.11-cpan-4d50c553e7e )