バックエンドで ActiveRecord を使用して IRC ボットをセットアップして、すべてのデータの重労働を処理しようとしています (おそらくやり過ぎですが、これは私にとって部分的に学習経験です:3)
私が実行している問題は、データベーススキーマを定義した後、作成したテーブルを参照しようとすると、後で同じスクリプトで、SQLite gem からテーブルが見つからないというエラーが表示されることです。
さらに、私の IDE (RubyMine) は、「:notes 関連付けフィールドのレール モデルが見つかりません」と文句を言います。
ボット フレームワークのクラスとして動作することを制限されていなければ、これは起こらないだろうと何かが教えてくれますが、それは現時点では単なる推測にすぎません。
ここで何が間違っていますか?
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)