我已经用PHP连接了oracle数据库。当我尝试在sqlplus中查询数据时,它可以工作。但是当我尝试用PHP查询时,它不起作用(它没有显示任何错误或什么都没有)。我的emp_id是数字。
<p> $query = "select order_id from ordered_by where order_emp_id =".$emp_id."and order_done='N'";
$stid = oci_parse($conn, $query);
$r = oci_execute($stid, OCI_DEFAULT);
$value="";
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS))
{
foreach ($row as $item)
{
$item!== null ? htmlentities($item) :'NULL';
$value =$item;
}
答案 0 :(得分:2)
在=".$emp_id."
$query = "select order_id from ordered_by where order_emp_id =".$emp_id." and order_done='N'";