Zend db级联删除多级
如何使 Zend Db 级联删除层次结构的多个级别?例如:
经销商->产品->属性
删除一个经销商应该一直到属性,但现在它没有:(
有什么想法吗?
How does one make Zend Db cascade delete multiple levels of the hierarchy? For example:
dealers -> products -> attributes
deleting one dealer should go all the way down to attributes, and now it doesn't :(
Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在函数
_cascadeDelete
内的 Zend_Table_Abstract 行上,一行的构造如下:它应该构造为如下所示:
更多信息 此处。
它对我有用,但需要测试更多。
On row of the Zend_Table_Abstract within the function
_cascadeDelete
a row is constructed like this:It should instead be constructed as something like this:
More info here.
It's worked for me in one cause but need to test more.