oci_parse的返回值
如果查询没有返回行,那么 if 的条件是什么,我想在 if 内执行一些命令。
<?php
include_once('config.php');
$db = oci_new_connect(ORAUSER,ORAPASS,"localhost/XE");
$sql="select * from table_1 where id=3";
$result=oci_parse($db,$sql);
oci_result($result);
if()
{
}
else
{
}
?>
what will be the condition of if , where i want to execute some command inside if ,if there is no row returned by the query.
<?php
include_once('config.php');
$db = oci_new_connect(ORAUSER,ORAPASS,"localhost/XE");
$sql="select * from table_1 where id=3";
$result=oci_parse($db,$sql);
oci_result($result);
if()
{
}
else
{
}
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以使用
oci_fetch
:you could use
oci_fetch
:使用 oci_parse() 分配绑定值后,您需要使用 oci_execute()。这是函数定义:
把它们放在一起:
After assigning the bind values with oci_parse(), you need to run the query with oci_execute(). This is the function definition:
Putting it all together: