我正在尝试在后端使用 ActiveRecord 设置一个 IRC 机器人来处理所有繁重的数据(可能是矫枉过正,但这部分是我的学习经验:3)
我遇到的问题是,在定义我的数据库模式之后,稍后在同一个脚本中,当我尝试引用我创建的表时,我从 SQLite gem 收到一个错误,说它找不到表。
此外,我的 IDE(RubyMine)抱怨它“无法找到 :notes 关联字段的 rails 模型”
有些东西告诉我,如果我不被限制为机器人框架的一类,这将不会发生,但这只是一个疯狂的猜测。
我在这里做错了什么?
require 'cinch'
require 'active_record'
puts 'Memobox loaded'
class Memobox
include Cinch::Plugin
ActiveRecord::Base.establish_connection(
:adapter => 'sqlite3',
:database => ':memory:'
)
ActiveRecord::Schema.define do
create_table :notes do |table|
table.column :id, :integer
table.column :timeset, :DateTime
table.column :sender, :string
table.column :recipient, :string
table.column :text, :string
end
end
class Note < ActiveRecord::Base
has_many :notes
end
match(/note.*/, :prefix => "?")
def execute(m)
Memobox::Note.create(
:timeset => (Time.new).ctime,
:sender => m.user.nick,
:text => m.message,
:recipient => (m.message).split("_").at(1)
)
end
end
错误:
C:/Ruby193/lib/ruby/gems/1.9.1/gems/activerecord-3.2.8/lib/active_record/connection_adapters/sqlite_adapter.rb:472:in `table_structure': Could not find table 'notes' (ActiveRecord::StatementInvalid)