I cant seen to figure out how to access the the data in the DBI object and get it back in.
$Query_Statement="select fname,lname,address,city,state,zip,phone,email FROM main order by lname,fname;";
my $DataOut = $DBHandle->prepare($Query_Statement);
$DataOut->execute();
foreach my...