in reply to Calling MySQL stored procedures with in and out parameters
my $sth = $dbh->prepare('SELECT "out1", "out2" FROM "prodecure_name"(? +, ?)'); $sth->execute($in1, $in2); [download]