| Server IP : 103.4.122.14 / Your IP : 216.73.216.103 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips System : Linux cwp2.slnet.com.au 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : statewid ( 1251) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/perl-DBD-MySQL-4.023/eg/ |
Upload File : |
#!/usr/bin/perl
use strict;
use DBI;
my $db='test';
my $host='localhost';
my $user='root';
my $password='';
my $i= 0;
my $dbh = DBI->connect("DBI:mysql:$db:$host",
"$user", "$password",
{ PrintError => 0}) || die $DBI::errstr;
$dbh->do("drop procedure if exists testproc") or print $DBI::errstr;
$dbh->do("create procedure testproc() deterministic
begin
declare a,b,c,d int;
set a=1;
set b=2;
set c=3;
set d=4;
select a, b, c, d;
select d, c, b, a;
select b, a, c, d;
select c, b, d, a;
end") or print $DBI::errstr;
my $sth= $dbh->prepare('call testproc()') ||
die $DBI::err.": ".$DBI::errstr;
$sth->execute || die DBI::err.": ".$DBI::errstr;
do {
print "\nResult set ".++$i."\n---------------------------------------\n\n";
for my $colno (0..$sth->{NUM_OF_FIELDS}) {
print $sth->{NAME}->[$colno]."\t";
}
print "\n";
while (my @row= $sth->fetchrow_array()) {
for my $field (0..$#row) {
print $row[$field]."\t";
}
print "\n";
}
} until (!$sth->more_results)