I'd like to bookmark the mail archive site so that I don't have to go to the
list to ask for the umpteenth million time what I know has been asked on
this list...
I'm having problems with calling an MS SQL stored procedure via DBI (using
FreeTDS DBD::Sybase).
I've tried the following formats:
$dbh->do("execute myprocedure $param1 $param2");
$dbh->do("execute myprocedure $param1, $param2");
$dbh->do("execute myprocedure \($param1, $param2 \)");
$dbh->do("execute myprocedure \($param1 $param2 \)");
Can someone throw me a bone?
K