我正在使用 sequel gem 和 postgresql 数据库
我有一个带有代码的文件 hello.rb
require "rubygems"
require './post'
require "sequel"
# connect to an in-memory database
DB = Sequel.connect('postgres://ritesh:newpassword@localhost')
post = Post['ruby1', 'hello world1']
post[1]
我创建了一个表格帖子和一个带有代码的模型
require 'sequel'
DB = Sequel.connect('postgres://ritesh:newpassword@localhost')
class Post < Sequel::Model
set_primary_key [:category, :title]
end
当我运行命令 ruby hello.rb 时,我收到以下错误 hello.rb:10: undefined method `[]' for nil:NilClass (NoMethodError)
我想知道创建的第一件事我们应该创建一个具有该名称的表,然后创建一个模型?第二件事,如果第一个假设是正确的,那么为什么我会收到这个错误?