$stmt = $dbh->prepare("beg in TOOLS_PKG.getOr gCode(?); end;");
$stmt->bindParam(1, $value, PDO::PARAM_STR| PDO::PARAM_INPU T_OUTPUT,
12);
$stmt->execute();
Does anything look wrong? This is a custom Oracle function that is
located in a package called TOOLS_PKG.
I have seen how you do this with an Oracle procedure, but would an
Oracle function be any different?
$stmt->bindParam(1, $value, PDO::PARAM_STR| PDO::PARAM_INPU T_OUTPUT,
12);
$stmt->execute();
Does anything look wrong? This is a custom Oracle function that is
located in a package called TOOLS_PKG.
I have seen how you do this with an Oracle procedure, but would an
Oracle function be any different?
Comment