使用sql获取主键或唯一错误

发布于 2024-11-19 13:29:00 字数 163 浏览 0 评论 0原文

我正在处理一个 ORACLE SQL 表,该表在两个字段上有一个主键。我想在使用 PHP 插入期间检索主键错误。

我将代码放在 try/catch 中,没有收到任何错误。

我对数据库没有太多的技能,但我知道我们在这里使用触发器。也许我可以在这里捕获错误?

谢谢你!

I am working on a ORACLE SQL table which have a primary key on two fields. I would like to retreive primary key error during an insertion with PHP.

I placed code in a try/catch and I don't get any errors.

I don't have a lot of skills with databases, but I know here we use triggers. Maybe I could catch here the error ?

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神妖 2024-11-26 13:29:00

检查 php.net 上的此链接

返回错误的函数是 oci_error ()

引用自 php.net

<?php
$stid = oci_parse($conn, "SELECT does_not_exist FROM dual");
$r = oci_execute($stid);
if (!$r) {
    $e = oci_error($stid);  // For oci_execute errors pass the statement handle
    print htmlentities($e['message']);
    print "\n<pre>\n";
    print htmlentities($e['sqltext']);
    printf("\n%".($e['offset']+1)."s", "^");
    print  "\n</pre>\n";
}
?>

Check this link on php.net

The function that returns the error is oci_error()

to quote from php.net

<?php
$stid = oci_parse($conn, "SELECT does_not_exist FROM dual");
$r = oci_execute($stid);
if (!$r) {
    $e = oci_error($stid);  // For oci_execute errors pass the statement handle
    print htmlentities($e['message']);
    print "\n<pre>\n";
    print htmlentities($e['sqltext']);
    printf("\n%".($e['offset']+1)."s", "^");
    print  "\n</pre>\n";
}
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文