Database-Abstraction
view release on metacpan or search on metacpan
lib/Database/Abstraction.pm view on Meta::CPAN
}
=head2 updated
Returns the Unix timestamp of the last database update (mtime for
file-based backends, or the time of the most recent C<new()> call for
DSN-based connections).
=cut
sub updated {
my $self = shift;
return $self->{'_updated'};
}
=head2 columns
Returns an array reference of column names for the current table.
my $cols = $db->columns(); # e.g. ['entry', 'name', 'score', 'status']
( run in 0.957 second using v1.01-cache-2.11-cpan-9581c071862 )