I'm using DBI::ODBC. All I want to do is execute a stored procedure, but the 3 lines below (which execute correctly under SQLplus) result in an "invalid SQL statement" error. (My ODBC connection is set up to use the Microsoft ODBC Driver for Oracle.) What would correct syntax be?:
$sql_stmt = "EXECUTE Upd_lead_time"; $sth = $dbh->prepare($sql_stmt); $sth->execute(); Laurie A. Vien Sr. Programmer/Analyst Ben & Jerry's Homemade, Inc. South Burlington, VT 05403
