/usr/share/doc/libdbd-odbc-perl/examples/testclob.pl is in libdbd-odbc-perl 1.56-1build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #!/usr/bin/perl -w
# $Id$
use DBI;
my $dbh = DBI->connect()
or die "$DBI::errstr\n";
$dbh->{PrintError} = 0;
eval {
# if it's not already created, the eval will silently ignore this
$dbh->do("drop table longtest;");
};
$dbh->{RaiseError} = 1;
$dbh->do("create table longtest (id integer primary key, value CLOB)");
my %foo;
$foo{2} = "Hello there.";
$foo{1} = "This is a test of CLOB. "x200;
my $tracefile = "dbitrace.log";
if (-e $tracefile) {
unlink($tracefile);
}
DBI->trace(9,$tracefile);
my $sth = $dbh->prepare("insert into longtest values (?, ?)");
$sth->execute((2, $foo{2}));
$sth->execute((1, $foo{1}));
$dbh->{LongReadLen} = 2000000;
my $sth2 = $dbh->prepare("select id, value from longtest order by id");
$sth2->execute;
my @row;
while (@row = $sth2->fetchrow_array) {
print join(', ', @row), "\n";
}
$dbh->disconnect;
|