ContactRetroller中的ActiveRecord :: StatementInvalid rails& PostgreSQL的

时间:2016-10-05 09:30:42

标签: ruby-on-rails postgresql activerecord model-view-controller

当我尝试从我的表创建/编辑或销毁联系人时出错。

当我尝试创建/编辑时,我有:

  

ContactController中的ActiveRecord :: StatementInvalid #create

     

PG :: UndefinedFunction:ERROR:函数get_xmlbinary()不存在   第1行:SELECT(get_xmlbinary()=' base64')^提示:无功能   匹配给定的名称和参数类型。您可能需要添加   显式类型转换。 QUERY:SELECT(get_xmlbinary()=' base64')   语境:PL / pgSQL函数hc_contact_status()在IF:INSERT处的第3行   INTO"联系" ("姓氏","名字","名称","手机","电子邮件")   价值(1美元,2美元,3美元,4美元,5美元)退货" id"

当我尝试删除时:

  

ContactController中的ActiveRecord :: StatementInvalid #create

     

PG :: UndefinedFunction:错误:函数hstore(联系人)不存在   第1行:SELECT hstore(OLD。) - excluded_cols ^提示:无功能   匹配给定的名称和参数类型。您可能需要添加   显式类型转换。 QUERY:SELECT hstore(OLD。) - excluded_cols   语境:PL / pgSQL函数hc_contact_logger()第18行分配:   删除"联系"在哪里"联系"。" id" = $ 1

我跟着它guide添加" hstore"到我的application_db但显示ERROR: extension "hstore" already exists

我正在使用现有数据库(Salesforce)。我使用命令行rails generate scaffold contact获取模型控制器和视图,我可以在浏览器上显示数据库的内容。

contact_controller.rb:

class ContactController < ApplicationController
  before_action :set_contact, only: [:show, :edit, :update, :destroy]

  # GET /contacts
  # GET /contacts.json
  def index
    @contact = Contact.all
  end

  # GET /contacts/1
  # GET /contacts/1.json  
  def show
  end

  # GET /contacts/new
  def new
    @contact = Contact.new
  end

  # GET /contacts/1/edit
  def edit
  end

  # POST /contacts
  # POST /contacts.json
  def create
    @contact = Contact.new(contact_params)

    respond_to do |format|
      if @contact.save
        format.html { redirect_to @contact, notice: 'Contact was successfully created.' }
        format.json { render :show, status: :created, location: @contact }
      else
        format.html { render :new }
        format.json { render json: @contact.errors, status: :unprocessable_entity }
      end
    end
  end

  # PATCH/PUT /contacts/1
  # PATCH/PUT /contacts/1.json
  def update
    respond_to do |format|
      if @contact.update(contact_params)
        format.html { redirect_to @contact, notice: 'Contact was successfully updated.' }
        format.json { render :show, status: :ok, location: @contact }
      else
        format.html { render :edit }
        format.json { render json: @contact.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /contacts/1
  # DELETE /contacts/1.json
  def destroy
    @contact.destroy
    respond_to do |format|
      format.html { redirect_to @contact, notice: 'Contact was successfully destroyed.' }
      format.json { head :no_content }
    end
  end
  #contact_url

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_contact
      @contact = Contact.find(params[:id])
    end


    # Never trust parameters from the scary internet, only allow the white list through.
    def contact_params
      params.require(:contact).permit(:name, :lastname, :firstname, :phone, :email)
    end
end

它能是什么?不要犹豫,询问您是否需要其他文件

编辑:我在PSQL上找到了它:

  插入或删除或更新后

hc_contact_logtrigger   salesforce.contact FOR EACH ROW WHEN(get_xmlbinary():: text =   &#39; base64&#39; :: text)EXECUTE PROCEDURE salesforce.hc_contact_logger()

     

hc_contact_status_trigger在INSERT或UPDATE ON之前   salesforce.contact FOR EACH ROW EXECUTE PROCEDURE   salesforce.hc_contact_status()

schema.rb

ActiveRecord::Schema.define(version: 0) do

  enable_extension "plpgsql"
  enable_extension "hstore"

  create_table "_hcmeta", force: :cascade do |t|
    t.string  "org_id",  limit: 50
    t.text    "details"
    t.integer "hcver"
  end

  create_table "_sf_event_log", force: :cascade do |t|
    t.string   "table_name",   limit: 128
    t.string   "action",       limit: 7
    t.datetime "synced_at",                default: -> { "now()" }
    t.datetime "sf_timestamp"
    t.string   "sfid",         limit: 20
    t.text     "record"
    t.boolean  "processed"
    t.index ["sfid"], name: "idx__sf_event_log_sfid", using: :btree
    t.index ["table_name", "synced_at"], name: "idx__sf_event_log_comp_key", using: :btree
  end

  create_table "_trigger_last_id", id: false, force: :cascade do |t|
    t.integer "trigger_log_id"
  end

  create_table "_trigger_log", force: :cascade do |t|
    t.string   "table_name",   limit: 128
    t.string   "state",        limit: 8
    t.string   "sfid",         limit: 18
    t.datetime "processed_at"
    t.string   "action",       limit: 7
    t.datetime "updated_at",               default: -> { "now()" }
    t.text     "old"
    t.bigint   "txid"
    t.integer  "record_id"
    t.text     "sf_message"
    t.datetime "created_at",               default: -> { "now()" }
    t.text     "values"
    t.integer  "sf_result"
    t.bigint   "processed_tx"
    t.index ["created_at"], name: "_trigger_log_idx_created_at", using: :btree
    t.index ["state", "id"], name: "_trigger_log_idx_state_id", using: :btree
    t.index ["state", "table_name"], name: "_trigger_log_idx_state_table_name", where: "(((state)::text = 'NEW'::text) OR ((state)::text = 'PENDING'::text))", using: :btree
  end

  create_table "_trigger_log_archive", id: :integer, force: :cascade do |t|
    t.string   "table_name",   limit: 128
    t.string   "state",        limit: 8
    t.string   "sfid",         limit: 18
    t.datetime "processed_at"
    t.string   "action",       limit: 7
    t.datetime "updated_at"
    t.text     "old"
    t.bigint   "txid"
    t.integer  "record_id"
    t.text     "sf_message"
    t.datetime "created_at"
    t.text     "values"
    t.integer  "sf_result"
    t.bigint   "processed_tx"
    t.index ["created_at"], name: "_trigger_log_archive_idx_created_at", using: :btree
    t.index ["record_id"], name: "_trigger_log_archive_idx_record_id", using: :btree
    t.index ["state", "table_name"], name: "_trigger_log_archive_idx_state_table_name", where: "((state)::text = 'FAILED'::text)", using: :btree
  end

  create_table "contact", force: :cascade do |t|
    t.string   "lastname",       limit: 80
    t.string   "firstname",      limit: 40
    t.string   "_hc_lastop",     limit: 32
    t.datetime "systemmodstamp"
    t.string   "name",           limit: 121
    t.text     "_hc_err"
    t.string   "sfid",           limit: 18
    t.string   "phone",          limit: 40
    t.boolean  "isdeleted"
    t.datetime "createddate"
    t.string   "email",          limit: 80
    t.index ["sfid"], name: "hcu_idx_contact_sfid", unique: true, using: :btree
    t.index ["systemmodstamp"], name: "hc_idx_contact_systemmodstamp", using: :btree
  end

  create_table "product2", force: :cascade do |t|
    t.text     "productimage__c"
    t.datetime "createddate"
    t.datetime "systemmodstamp"
    t.boolean  "isdeleted"
    t.string   "sfid",            limit: 18
    t.string   "name",            limit: 255
    t.string   "family",          limit: 40
    t.string   "_hc_lastop",      limit: 32
    t.string   "description",     limit: 4000
    t.string   "productcode",     limit: 255
    t.text     "_hc_err"
    t.index ["sfid"], name: "hcu_idx_product2_sfid", unique: true, using: :btree
    t.index ["systemmodstamp"], name: "hc_idx_product2_systemmodstamp", using: :btree
  end

end

1 个答案:

答案 0 :(得分:0)

你需要包括&#34; public&#34;架构到schema_search_path到database.yml

default: &default
  ...........
  schema_search_path: "salesforce,public"

Connect在数据库的get_xmlbinary模式中创建一个名为public的函数,它将其用作同步过程的一部分。如果您从public中删除search_path架构,则Connect将无法找到该功能,并且同步将失败。