如何在查询执行之前查找 MySQl 查询类型 Zend 框架
我使用 Zend Framework 和 MySQL DB 作为后端。
我想根据 MySQL 服务器上执行的查询类型执行一些操作。
我想在查询执行之前执行这些操作。
所以我的问题是我可以在使用 Zend Framework 执行查询之前找到查询的类型,例如 SELECT 、 UPDATE 、 INSERT 或 DELETE 吗?
非常感谢。
I am using Zend Framework with MySQL DB as backend.
I want to perform some operations depending on the type of query executed on MySQL server.
I want to perform these operations before query execution.
So my question is can I find the type of query before it is executed using Zend Framework e.g. SELECT , UPDATE, INSERT or DELETE ?
Many thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你应该看看这个类的代码 - Zend_Db_Table_Abstract。
位置 - Zend/Db/Table/Abstract.php
每当我对 Zend Framework 如何执行某些内容产生疑问时,我都会深入框架并检查底层类中执行的代码。
它澄清了我心中的每一个问题。
希望这有帮助。
I think you should look at the code of this class - Zend_Db_Table_Abstract.
Location - Zend/Db/Table/Abstract.php
Whenever I am into doubts about how Zend Framework is executing something, I dig inside the framework and check the code executing in the underlying classes.
Its clears up every question I have in my mind.
Hope this helps.