这应该很简单.我想检索序列的nextval …它不是默认值…它不是主键…它不是外键.在极少数情况下,我需要一个用户提供的值的序列号.
我尝试过以下方法:
@nextid = ActiveRecord::Base.connection.execute("SELECT nextval('xscrpt_id_seq')")
我得到的是:
#<PG::Result:0x007fe668a854e8 @connection=#<PG::Connection:0x00000003aeff30>>
并通过使用
@nextid[0]["nextval"]
我可以得到正确的值,但它似乎不是解决问题的正确方法.我搜索过,我读了“Pro Active Record”,据说使用:
M_script.find_by_sql("SELECT nextval('xscript_id_seq')")
但是,那没用.
任何关于“正确”(Rails方式)的提示,以从ROR中的序列中检索nextval,将非常感激!
解决方法
您可能想要使用select_value和sequence_name:
Xscrpt.connection.select_value("select nextval('#{Xscrpt.sequence_name}')").to_i