in reply to SOLVED: DBI SQL Returns Less than Direct SQL
You probably are using an inappropriate DBI method for your desired result. In your perl, try the following and see if you get the right number of rows:
my $results = $dbh->selectall_arrayref($your_sql) ; print Dumper($_) foreach (@{$results}) ;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: DBI SQL Returns Less than Direct SQL
by DaveNagy (Initiate) on Oct 17, 2011 at 23:10 UTC | |
by onelesd (Pilgrim) on Oct 17, 2011 at 23:55 UTC | |
by DaveNagy (Initiate) on Oct 18, 2011 at 12:17 UTC | |
by DaveNagy (Initiate) on Oct 18, 2011 at 12:22 UTC |