Advertisement
Advertisement
| 07.25.2008 at 08:26AM PDT, ID: 23595777 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: |
my $LongReadLen = $DB21->{dbh}->selectrow_array(qq{SELECT MAX(DATALENGTH(Img)) FROM Image_View});
$DB21->{dbh}->do("set textsize $LongReadLen"); ### this line was fixing the problem, but problem has resurfaced
my $sql2 = "SELECT Img, CheckNum
FROM Image_View
WHERE UserID = '$FORM->{StoreNum}'
AND Acct = '$FORM->{BankAcctNum}'
AND Routing = '$FORM->{RoutingNum}'
AND CheckNum = '$FORM->{CheckNum}'
AND Amt = '$FORM->{Amt}'";
my $rs = $DB21->SelectHash($sql2);
|