This is my code:
my $dbiConn="DBI:Sybase:server=$prop{dbHost}:1433";
my $db=DBI->connect($dbiConn,$prop{dbUser},$prop{dbPwd});
my $sqlSt="select FilesTransfered,transactionDate from CDProcessTransaction where processname = '$prop{process}'";
my $recordSet=$db->prepare($sqlSt);
$recordSet->execute( );
while (my @rValue=$recordSet->fetchrow_array)
{
print OUT "Files: @rValue\n";
}
If length of field "FilesTransfered" is more than 255 characters, its truncated. This field contains the filenames processed (sometimes upto 20 filenames where it exceeds more than 255 chars)
.In reply to Re^2: Unable to retrieve field which has more than 255 chars
by Anonymous Monk
in thread Unable to retrieve field which has more than 255 chars
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |