=head1 NAME
ORDB::CPANTS::Uses - ORDB::CPANTS class
for
the uses table
=head1 SYNOPSIS
TO BE COMPLETED
=head1 DESCRIPTION
TO BE COMPLETED
=head1 METHODS
=head2
select
my
@list
= ORDB::CPANTS::Uses->
select
;
my
$array_ref
= ORDB::CPANTS::Uses->
select
(
'where id > ? order by id'
,
1000,
);
The C<
select
> method executes a typical SQL C<SELECT> query on the
uses table.
It takes an optional argument of a SQL phrase to be added
after
the
C<FROM uses> section of the query, followed by variables
to be bound to the placeholders in the SQL phrase. Any SQL that is
compatible
with
SQLite can be used in the parameter.
Returns a list of B<ORDB::CPANTS::Uses> objects
when
called in list context, or a
reference to an ARRAY of B<ORDB::CPANTS::Uses> objects
when
called in
scalar
context.
Throws an exception on error, typically directly from the L<DBI> layer.
=head2 count
my
$rows
= ORDB::CPANTS::Uses->count;
my
$small
= ORDB::CPANTS::Uses->count(
'where id > ?'
,
1000,
);
The C<count> method executes a C<SELECT COUNT(*)> query on the
uses table.
It takes an optional argument of a SQL phrase to be added
after
the
C<FROM uses> section of the query, followed by variables
to be bound to the placeholders in the SQL phrase. Any SQL that is
compatible
with
SQLite can be used in the parameter.
Returns the number of objects that match the condition.
Throws an exception on error, typically directly from the L<DBI> layer.
=head1 ACCESSORS
=head2 id
if
(
$object
->id ) {
print
"Object has been inserted\n"
;
}
else
{
print
"Object has not been inserted\n"
;
}
Returns true, or throws an exception on error.
REMAINING ACCESSORS TO BE COMPLETED
=head1 SQL
The uses table was originally created
with
the
following SQL command.
CREATE TABLE uses (
id integer not null,
dist integer,
module text,
in_dist integer,
in_code integer not null,
in_tests integer not null,
primary key (id)
)
=head1 SUPPORT
ORDB::CPANTS::Uses is part of the L<ORDB::CPANTS> API.
See the documentation
for
L<ORDB::CPANTS>
for
more information.
=head1 AUTHOR
Adam Kennedy
=head1 COPYRIGHT
Copyright 2009 Adam Kennedy.
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the
LICENSE file included
with
this module.