当前位置:  开发笔记 > 后端 > 正文

不能在Ruby Sequel中'删除'

如何解决《不能在RubySequel中'删除'》经验,为你挑选了1个好方法。

我从Ruby的Sequel数据库库开始.

给出以下代码:

require 'sequel'
db = Sequel.connect('sqlite://users.db')
users = db[:users]
users.first.delete

Ruby抛出错误:

'delete' : wrong number of arguments (0 for 1) (ArgumentError)

我可以删除多条记录,但.first.delete不起作用.怎么了?



1> Arup Rakshit..:

db[:users]给你一个Sequel::SQLite::Dataset.没有任何参数的users.first方法会将用户作为Hash对象.现在你正在打电话Hash#delete,这需要一个参数.但你并没有传递那个论点.因此它抱怨.

而是做如下:

# if you want to delete the the first matching argument of any specific
# attribute/db column
db[:users].filter(:key => 1).delete
# or if you want to delete the first record from db
db[:users].limit(1).delete

也阅读此#drop方法.


您不希望在除MySQL以外的任何数据库上执行db [:users] .limit(1).delete`,因为LIMIT子句仅适用于MySQL上的DELETE。在所有其他数据库上,您最终将删除表中的所有行。
推荐阅读
拾味湖
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有