使用PostgreSQL在Grails中使用hasMany的奇怪问题。 “错误:列<column_name>不存在”</column_name>

时间:2012-03-30 08:08:28

标签: postgresql grails gorm

我很难尝试使用PostgreSQL 9.1让“hasMany”在Grails 2.0.1中运行。我有两张桌子:

CREATE TABLE "_QUESTIONS"
(
  "QUESTION_ID" bigint NOT NULL,
  "TEXT" text,
  CONSTRAINT "PK" PRIMARY KEY ("QUESTION_ID" )
)
WITH (
  OIDS=FALSE
);
ALTER TABLE "_QUESTIONS"
  OWNER TO postgres;

CREATE TABLE "_ANSWERS"
(
  "ANSWER_ID" bigint NOT NULL,
  "TEXT" text,
  "QUESTION_ID" bigint,
  CONSTRAINT "PK1" PRIMARY KEY ("ANSWER_ID" ),
  CONSTRAINT "FK" FOREIGN KEY ("QUESTION_ID")
      REFERENCES "_QUESTIONS" ("QUESTION_ID") MATCH SIMPLE
      ON UPDATE NO ACTION ON DELETE NO ACTION
)
WITH (
  OIDS=FALSE
);
ALTER TABLE "_ANSWERS"
  OWNER TO postgres;

和两个域类:

class Question {
    String text

    String toString(){
        text
    }

    static constraints = {
    }    
    static hasMany = [answers: Answer]    
    static mapping = {
        table '`_QUESTIONS`'
        version false
        id generator: 'identity'
        id column: '`QUESTION_ID`'
        text column: '`TEXT`'
    }
}

class Answer {
    String text
    Question question

    String toString(){
        text
    }

    static constraints = {
    }

    static  belongsTo = [question : Question]

    static mapping = {
        table '`_ANSWERS`'
        version false
        id generator: 'identity'
        id column: '`ANSWER_ID`'
        text column: '`TEXT`'
        question column: '`QUESTION_ID`'
    }
}

我为它们生成了视图和控制器,当我尝试浏览某个特定问题时,我收到以下错误:

URI:/hasManyTest/question/show/1
Class:org.postgresql.util.PSQLException
Message:ERROR: column answers0_.question_id does not exist Position: 8

堆栈跟踪:

Line | Method
->>    8 | runWorker in \grails-app\views\question\show.gsp
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

Caused by SQLGrammarException: could not initialize a collection: [hasmanytest.Question.answers#1]
->>   26 | doCall    in C__Users_root_IdeaProjects_hasManyTest_grails_app_views_question_show_gsp$_run_closure2
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
|     55 | run       in C__Users_root_IdeaProjects_hasManyTest_grails_app_views_question_show_gsp
|   1110 | runWorker in java.util.concurrent.ThreadPoolExecutor
|    603 | run       in java.util.concurrent.ThreadPoolExecutor$Worker
^    722 | run . . . in java.lang.Thread

Caused by PSQLException: ERROR: column answers0_.question_id does not exist
  Position: 8
->> 2103 | receiveErrorResponse in org.postgresql.core.v3.QueryExecutorImpl
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
|   1836 | processResults in     ''
|    257 | execute . in     ''
|    512 | execute   in org.postgresql.jdbc2.AbstractJdbc2Statement
|    388 | executeWithFlags in     ''
|    273 | executeQuery in     ''
|     96 | executeQuery in org.apache.commons.dbcp.DelegatingPreparedStatement
|     26 | doCall    in C__Users_root_IdeaProjects_hasManyTest_grails_app_views_question_show_gsp$_run_closure2
|     55 | run . . . in C__Users_root_IdeaProjects_hasManyTest_grails_app_views_question_show_gsp
|   1110 | runWorker in java.util.concurrent.ThreadPoolExecutor
|    603 | run . . . in java.util.concurrent.ThreadPoolExecutor$Worker
^    722 | run       in java.lang.Thread

过去几天我做了很多体操,似乎没有任何帮助,当我删除关联时,一切都很好。我错过了一些明显的东西吗

2 个答案:

答案 0 :(得分:1)

问题似乎与Grails / GORM映射和用于创建表的SQL之间的假设不匹配。

如果省略上述SQL中表名和列名的引号,则表和列将不区分大小写。来自http://wiki.postgresql.org/wiki/Things_to_find_out_about_when_moving_from_MySQL_to_PostgreSQL

  

PostgreSQL中的数据库,表,字段和列名称与大小写无关,除非您使用双引号创建它们,在这种情况下它们区分大小写。在MySQL中,表名称可以区分大小写,具体取决于您使用的操作系统。

如果使用以下内容创建表格,则将Grails从等式中取出:

CREATE TABLE "_QUESTIONS"
(
  "QUESTION_ID" bigint NOT NULL,
  "TEXT" text,
  CONSTRAINT "PK" PRIMARY KEY ("QUESTION_ID" )
)
WITH (
  OIDS=FALSE
);

然后:

test=> select * from _questions;
ERROR:  relation "_questions" does not exist
LINE 1: select * from _questions
                      ^
test=> select * from _QUESTIONS;
ERROR:  relation "_questions" does not exist
LINE 1: select * from _QUESTIONS;
                      ^
test=> select * from "_QUESTIONS";
 QUESTION_ID | TEXT 
-------------+------
(0 rows)

但是,如果在表和列名称周围创建没有引号的表:

CREATE TABLE _QUESTIONS
(
  QUESTION_ID bigint NOT NULL,
  TEXT text,
  CONSTRAINT PK PRIMARY KEY (QUESTION_ID)
)
WITH (
  OIDS=FALSE
);

然后:

test=> select * from _questions;
 question_id | text 
-------------+------
(0 rows)

test=> select * from _QUESTIONS;
 question_id | text 
-------------+------
(0 rows)

test=> select * from "_QUESTIONS";
ERROR:  relation "_QUESTIONS" does not exist
LINE 1: select * from "_QUESTIONS";
                  ^

答案 1 :(得分:0)

我已经成功解决了这个问题。事实证明,为什么ORM试图通过其小写名称访问关联列,更改名称解决了问题。