Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Ruby 1.9.3、MS Sql Server 和 Windows 7 Ultimate
我想知道如何检查数据库中是否已经存在某个记录,以避免重复记录。在 Rails 中调用 Object.exists 会很容易吗?但我只使用 Ruby。
谢谢
检查源代码exists?在activerecord
exists?
它基本上primary key使用 sql 查询检查是否存在具有 id 的存在。
primary key
您可以使用这些来编写自己的辅助方法。
否则你也可以activerecord在 ruby 中使用 gem。
activerecord