这是我第一次开发应用程序 pl / sql,我在将参数传递给 php pl / sql 时遇到了一些困难。函数 PL / SQL 已在数据库中创建,当运行以下查询时,它返回应有的参数:
BEGIN
PIN_USERNAME := 'admin';
PIN_PASSWD := '1';
POUT_MESSAGE := NULL;
RetVal := PKG_LOGIN.LOGIN_PORTAL ( PIN_USERNAME, PIN_PASSWD, POUT_MESSAGE );
DBMS_OUTPUT.PUT_LINE('PIN_USERNAME='||PIN_USERNAME);
DBMS_OUTPUT.PUT_LINE('PIN_PASSWD='||PIN_PASSWD);
DBMS_OUTPUT.PUT_LINE('POUT_MESSAGE='||POUT_MESSAGE);
COMMIT;
END;
现在的问题是我不能在 php 中做同样的事情。这是我在google的帮助下开发的php代码:
include 'define.php';
require_once '../config/connectDB.php';
if(isset($_POST['user']) && isset($_POST['senha']))
{
$utilizador = $_POST['user'];
$senha = $_POST['senha'];
$msg;
//Connection database
if(!ligacaoDB())
{
echo "Dont Connect";
}
$query = "begin :r := PKG_LOGIN.LOGIN_PORTAL (:1, :2, :3); commit; end;";
$result = oci_parse(ligacaoDB(), $query);
oci_bind_by_name($result, ":1", $utilizador);
oci_bind_by_name($result, ':2', $senha);
oci_bind_by_name($result, ':3', $msg);
oci_bind_by_name($result, ':r', $r);
$xpto = oci_execute($result);
if($xpto == false)
{
$e = oci_error($result);
print htmlentities($e['message']);
}
else
{
echo $msg . " | " . $r;
}
oci_free_statement($result);
oci_close(ligacaoDB());
}
根据我对 plsql 函数的理解,该参数接收user
并password
检查数据库是否返回一条消息和一个由msg
and表示的布尔值r
。
有人可以帮助我并向我解释谁可能做错了吗?