Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/sqlite/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Rails--ActiveRecord::StatementInvalid:SQLite3::SQLException:没有这样的列:_Activerecord_Sqlite_Ruby On Rails 4.1 - Fatal编程技术网

Rails--ActiveRecord::StatementInvalid:SQLite3::SQLException:没有这样的列:

Rails--ActiveRecord::StatementInvalid:SQLite3::SQLException:没有这样的列:,activerecord,sqlite,ruby-on-rails-4.1,Activerecord,Sqlite,Ruby On Rails 4.1,目前存在重大Rails问题。我正在创建一个学校仪表板应用程序,它采用一个名为“注册”的外部参照表,将课程和学生联系起来 每当我试图更新注册的分数时,我总是得到这一行 ActiveRecord::StatementInvalid: SQLite3::SQLException: no such column: UPDATE "enrollments" SET "grade" = ?, "updated_at" = ? WHERE "enrollments"."" IS NULL 当我更新课程或学生

目前存在重大Rails问题。我正在创建一个学校仪表板应用程序,它采用一个名为“注册”的外部参照表,将课程和学生联系起来

每当我试图更新注册的分数时,我总是得到这一行

ActiveRecord::StatementInvalid: SQLite3::SQLException: no such column: UPDATE
"enrollments" SET "grade" = ?, "updated_at" = ? WHERE "enrollments"."" IS NULL
当我更新课程或学生的属性时,此行不会出现。仅适用于注册中的
:grade
属性。 出于某种原因,它没有被正确读取,即使它是我的数据库中注册的合法属性(请查看我的模式)

我在rails沙箱中完成了所有的准备工作。 使用ruby 2.1.1、Rails 4.1.0.rc1

我真的很想在这里得到一些帮助

这是我对应的模型

class Student < ActiveRecord::Base
   has_many :enrollments
   has_many :courses, through: :enrollments
end

class Course < ActiveRecord::Base
   has_many :enrollments
   has_many :students, through: :enrollments
end

class Enrollment < ActiveRecord::Base
    belongs_to :student
    belongs_to :course
end

看来是我自己想出来的

这里有一点rails惯例需要解决。问题在于我的“注册”数据库设置。当我运行命令时
rails g migration CreateJoinTableEnrollments课程学生

Rails在迁移文件中为我做了太多的工作(除了表名和等级,我补充了这一点)

这样,就没有问题了!在过去的两天里,我一直在为这件事伤脑筋。希望这能帮助其他有这个问题的人

class StudentsController < ApplicationController
   def index
      @students = Student.all
   end

   def new
      @student = Student.new
   end

   def show
   end

   def update
      @student.update_attributes(student_params) ? redirect_to @student : render 'edit'
   end

   def create
      @student = Student.new(student_params)
      @student.save ? redirect_to @student : render 'new' 
   end

   def destroy
   end

   def edit
   end

   private
   def student_params
      params.require(:student).permit(:first_name, :last_name, :student_number, :email)
  end
 end
class CoursesController < ApplicationController
   def index
     @courses = Course.all
   end

   def new
     @course = Course.new
   end

   def show
   end

   def update
     @course.update_attributes(course_params) ? redirect_to @course : render 'edit'
   end

   def create
     @course = Course.new(course_params)
     @course.save ? redirect_to @course : render 'new'
   end

   def destroy
   end

   def edit
     # code here
   end

   private
   def course_params
     params.require(:course).permit(:course_name, :course_number)
   end
 end
class EnrollmentsController < ApplicationController
   attr_accessor :course_id, :student_id, :grade
   def index
     @enrollments = Enrollment.all
   end

   def new
     @enrollment = Enrollment.new
   end

   def create
     @enrollment = Enrollment.new(enrollment_params)
     @enrollment.save ? redirect_to @enrollment : render 'new'
   end

   def update
     @enrollment.update_attributes(enrollment_params) ? redirect_to @enrollment : render  'edit'
   end

   def show
   end

   def destroy
     @enrollment.destroy
   end

   def edit
     # code here
   end

   private
   def enrollment_params
     params.require(:enrollment).permit(:course_id, :student_id, :grade)
   end
 end
 ActiveRecord::Schema.define(version: 20140417152720) do

   create_table "courses", force: true do |t|
     t.string   "course_name"
     t.integer  "course_number"
     t.datetime "created_at"
     t.datetime "updated_at"
   end

   create_table "enrollments", id: false, force: true do |t|
     t.integer  "course_id",                          null: false
     t.integer  "student_id",                         null: false
     t.decimal  "grade",      precision: 5, scale: 2
     t.datetime "created_at"
     t.datetime "updated_at"
   end

   # noinspection RailsParamDefResolve
   add_index "enrollments", ["course_id", "student_id"], name: "index_enrollments_on_course_id_and_student_id"
   # noinspection RailsParamDefResolve
   add_index "enrollments", ["student_id", "course_id"], name: "index_enrollments_on_student_id_and_course_id"

   create_table "students", force: true do |t|
     t.string   "first_name"
     t.string   "last_name"
     t.string   "email"
     t.integer  "student_number"
     t.datetime "created_at"
     t.datetime "updated_at"
   end
 end
class CreateJoinTableEnrollments < ActiveRecord::Migration
  def change
     create_join_table :courses, :students, table_name: :enrollments, id: false, force: true do |t|
       t.index [:course_id, :student_id], null: false
       t.index [:student_id, :course_id], null :false
       t.decimal :grade, precision: 5, scale: 2
       t.timestamps
    end
   end
 end
class CreateJoinTableEnrollments < ActiveRecord::Migration
   def change
      create_table :enrollments do |t|
         t.integer :course_id, null: false
         t.integer :student_id, null: false
         t.decimal :grade, precision: 5, scale: 2

         t.timestamps
      end
    end
  end