http://www.perlmonks.org?node_id=1142905


in reply to Retrieve file BLOB from SQL Server 'Image' field type

while (my $row = $sth->fetchrow()) { #fetchrow_arrayref # Save blob data into this file: # print FILE $row; # if you are fetching an array reference with a single value: print FILE $row->[0]; }



This is not a Signature...

Replies are listed 'Best First'.
Re^2: Retrieve file BLOB from SQL Server 'Image' field type
by porg (Novice) on Sep 24, 2015 at 14:07 UTC
    thanks for the tip