DBIx-Foo

 view release on metacpan or  search on metacpan

lib/DBIx/Foo.pm  view on Meta::CPAN

sub err {
	my $self = shift;
	return $self->{dbh}->err;
}

sub last_insert_id {
	my ($self, @args) = @_;
	return $self->{dbh}->last_insert_id(@args);
}

sub update_query {
	my ($self, $table) = @_;
	return DBIx::Foo::UpdateQuery->new($table, $self);
}

1;

__END__

=head1 NAME

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.324 second using v1.00-cache-2.02-grep-82fe00e-cpan-4673cadbf75 )