I run the following query but I only get first value from result.
Code: Select all
my $SQL = "SELECT id FROM roles ";
$Self->{DBObject}->Prepare(SQL => $SQL, Limit => 15);
my @Row = $Self->{DBObject}->FetchrowArray();
Can some one tell me whats missing ?