如果主键名称不是“id”,如何使用 CodeIgniter 和 Datamapper 删除记录?

发布于 2024-12-13 15:44:35 字数 111 浏览 0 评论 0原文

我有一个名为 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 技术交流群。

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

发布评论

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

评论(2

秋日私语 2024-12-20 15:44:35

这应该有效:

$this->db->delete('usuario', array('idusuario' => $value)); 

根据 CodeIgniter 的 Active Record 文档:

第一个参数是表名,第二个是where
条款。您还可以使用 where() 或 or_where() 函数代替
将数据传递给函数的第二个参数:

This should work:

$this->db->delete('usuario', array('idusuario' => $value)); 

According to CodeIgniter's Active Record documentation:

The first parameter is the table name, the second is the where
clause. You can also use the where() or or_where() functions instead
of passing the data to the second parameter of the function:

墨落成白 2024-12-20 15:44:35

从当前版本开始,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.

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