如何获取sqlite中被更改的表的名称?

发布于 2024-10-21 16:22:09 字数 111 浏览 1 评论 0原文

这里有人知道怎么取名字吗 已更改、更新或删除的表的 在SQLite中?..我发现了函数changes()和totalChanges() 但它们只返回数据库行数 由最近完成的 SQL 语句更改、插入或删除。

Does anyone here knows how to get the name
of the table that was changed,updated or deleted
in SQLite?..i found the function changes() and totalChanges()
but they only return the number of database rows that were
changed or inserted or deleted by the most recently completed SQL statement.

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

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

发布评论

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

评论(1

荒路情人 2024-10-28 16:22:09

在大多数 RDBMS 中,您都有某种日志记录来捕获所有数据库事务以进行数据备份和恢复。在 Oracle 中,它称为重做日志。您可以在那里检查表名是否已更改。

但我对 SqlLite 不太熟悉,不知道它是否可用。我确实找到了一个帖子,其中提出了类似的问题,建议您自己实现。 尝试阅读此链接,看看这是否满足您的要求:

但除此之外,我还建议您的应用程序使用视图,这样可以保护模型免受更改。

In most RDBMS's you have some kind of journaling that captures all database transactions for data backup and recovery. In Oracle, it's called a redo log. That is where you would go to check if a table name has changed.

But I'm not familiar enough with SqlLite to know if this is available. I did find a thread where a similar question was asked, and it was recommended to implement it yourself. Try reading through the this link and see if this satisfies your requirements:

But aside from all of that, I would also recommend that your app use views, that way you protect the model from changes.

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