将记录所有 SQL INSERT 和 SQL DELETE(并且仅记录这些命令)的 Ruby 文件
我正在使用 PostgreSQL 数据库。我编写了一个 .rb 文件,用于操作数据库中的数据。我希望能够记录此文件引发的所有 SQL INSERT 和 DELETE。我该怎么办?
I am working with a PostgreSQL database. I have written a .rb file I am using to manipulate data in the database. I want to be able to log all the SQL INSERTs and DELETEs elicited by this file. How do I go about that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在脚本开始时,创建所需的临时表,并添加两个触发器,一个用于插入,一个用于删除,并相应地为每一行触发它们。它也适用于规则:
At the start of your script, create the needed temporary tables, and adds two triggers, one on insert, one on delete, and have them fire for each row accordingly. it also works with rules: