iBatis 是否在我的表上强制使用主键?

发布于 2024-08-25 14:49:17 字数 252 浏览 1 评论 0原文

我正在处理一个遗留项目。数据库设计得很糟糕。我现在想更改数据库层。我首先想到的是休眠,但我休眠需要在我的表上有一个主键。事实上我的一些表没有主键。所以我进行了谷歌搜索,发现了iBatis,听起来非常好用。但我不知道 iBatis 是否在我的表上强制执行主键?

谢谢。

I'm working on a legacy project. The database is poorly designed. I want to change the DB layer now. The first think go through my mind is hibernate, but I hibernate need a primary key on my table. In fact some of my table does not have primary key. So I did a google search and I find iBatis, it's sounds very good with it. But I don't know whether iBatis enforce a primary key on my table?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

林空鹿饮溪 2024-09-01 14:49:17

不会。IBatis 不会强制您的表上有主键。它的主要工作和优势是将数据从结果集映射到 java 对象。从数据库检索数据的 SQL 语句是由您(您)手工编写的,因此您在这里几乎没有约束或限制。

No. IBatis does not force you to have a primary key on your table. Its primary job and strength is to map data from resultsets to java objects. The SQL statements to retrieve the data from the database are written by hand (you), so you have almost no constraints or limitations here.

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