softeng2000 has asked for the wisdom of the Perl Monks concerning the following question:
It must be 10 after call.use DBI; use DBD::ADO; $dbh = DBI->connect('dbi:ADO:DSN', 'name', 'password') || die $DBI::errstr; $y = 5; $sth = $dbh->prepare("execute sp_test_1 ?"); $rc = $sth->bind_param_inout(1, \$y, 1) || die $dbh->errstr; $sth->execute; $dbh->disconnect; print "y = $y\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl-SQL-ADO-Stored proedures
by Fastolfe (Vicar) on Nov 11, 2000 at 00:34 UTC | |
by extremely (Priest) on Nov 11, 2000 at 03:37 UTC |