如果主键名称不是“id”,如何使用 CodeIgniter 和 Datamapper 删除记录?
我有一个名为 usuario
的表,一个同名的实体,主键名为 idusuario
。我无法删除它,因为主键未命名为“id”。是否有可能以某种方式绕过这个限制?
I have a table named usuario
, an entity with the same name, and the primary key is named idusuario
. I can't delete it since the primary key isn't named "id". Is it possible to circumvent this limitation somehow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该有效:
根据 CodeIgniter 的 Active Record 文档:
This should work:
According to CodeIgniter's Active Record documentation:
从当前版本开始,DataMapper 要求主键称为“id”,并且它必须是整数。这是硬编码的,没有办法绕过它(如果你想使用 DataMapper)。
此限制将在版本 2 中删除。
DataMapper, as of the current release, requires the primary key to be called 'id', and it must be an integer. This is hardcoded, no way around it (if you want to use DataMapper).
This restriction will be removed in version 2.