|
|
Question : fetchrow_array() no print
|
|
I am having a problem printing using fetchrow_array when there is only one return value from the querry. The program needs to be able to print no mater how many results come from the querry. Here is part of the code.
##Open Database $dbh = DBI->connect("BLAH BLAH BLAH") or die "Can not connect"; my $sql= qq(SELECT * FROM Dealer ORDER BY last_name); my $sth = $dbh->prepare($sql); $sth->execute(); @row = $sth->fetchrow_array(); while(@row = $sth->fetchrow_array()){ print "@row"; }
|
Answer : fetchrow_array() no print
|
|
You only need to call fetchrow_array() in one place. Get rid of the one before the while loop. (Were you thinking you had to skip a row containing column names?)
|
|
|
|