PDO:sqlite不插入数据,但没有错误

发布于 2024-08-29 16:25:36 字数 484 浏览 4 评论 0原文

try
{
    $res = $db->exec($sql);
    if ($res === FALSE)
    {
        print_r($db->errorInfo());
        die();
    }
}
catch(PDOException $e)
{
    die($e->getCode().':'.$e->getMessage());
}
catch(Exception $e)
{
    die($e->getCode().':'.$e->getMessage());
}    

没有错误信息,也不会被捕获为异常。然而 $res 为 FALSE,并且没有插入任何数据。

Array
(
    [0] => 
)

但是,当我 echo $sql 并在 SQLiteManager 中输入该查询时,它可以插入数据。

try
{
    $res = $db->exec($sql);
    if ($res === FALSE)
    {
        print_r($db->errorInfo());
        die();
    }
}
catch(PDOException $e)
{
    die($e->getCode().':'.$e->getMessage());
}
catch(Exception $e)
{
    die($e->getCode().':'.$e->getMessage());
}    

No error info, and neither does it get caught as an exception. Yet $res is FALSE and no data gets inserted.

Array
(
    [0] => 
)

But when I echo $sql and enter that query in SQLiteManager, it works inserting the data.

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

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

发布评论

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

评论(2

独留℉清风醉 2024-09-05 16:25:36

我仅将 sqlite 与 Python 一起使用,但我必须在那里提交插入/更新语句...也许这里也是这种情况? http://docs.php.net/manual/en/pdo.commit。 php

I used sqlite only with Python, but I had to commit insert/update statements there... Maybe that's the case here too? http://docs.php.net/manual/en/pdo.commit.php

白首有我共你 2024-09-05 16:25:36

确保存储文件的目录可写。

Ensure the directory where you store file is writable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文