备注
当我使用下面的依赖项时(即,使用旧版本的Anorm),下面的工作如预期的那样(没有抛出异常)。
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.8")
"org.postgresql" % "postgresql" % "9.4-1202-jdbc42"
问题
在PostgreSQL中我有一个用户定义的函数
CREATE OR REPLACE FUNCTION pPersonGet(p_personId bigint)
RETURNS TABLE (
id bigint,
shortname character varying,
longname character varying,
avatarURL character varying,
isActive boolean) AS
$$
BEGIN
return QUERY
select p.id, p.shortname, p.longname, p.avatarURL, p.isActive
From person p
where p_personId is null or p.id = p_personId;
END
$$ LANGUAGE plpgsql;
使用Anorm 2.4执行以下find
函数时
val selectStmt =
"""
select id, shortname, longname, avatarURL, isActive from pPersonGet({id});
"""
....
....
val simple = {
get[PersonID]("id") ~
str("shortname") ~
str("longname") ~
str("avatarurl") ~
get[Boolean]("isActive") map {
case id~shortname~longname~avatarurl~isActive
=> Person(Some(id),
Name(short, long),
avatarurl,
isActive)
}
}
....
....
def find(id:Option[PersonID]) : List[Person] = {
DB.withConnection { implicit conn =>
anorm.SQL(selectStmt).on("id" -> id).as(simple *)
}
}
我得到以下异常
[PSQLException: Multiple ResultSets were returned by the query.]
依赖关系:
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.0")
"org.postgresql" % "postgresql" % "9.4-1202-jdbc42"
"com.typesafe.play" %% "anorm" % "2.4.0"
Scala版本
scala-sdk-2.11.2
1条答案
按热度按时间lg40wkob1#
这是你的jdbc驱动程序中的一个bug,看看here
当查询字符串包含“”时;\n”在sql的末尾,查询将失败并返回错误。此错误在版本1202和1203中发现。我建议您使用9.4-1204+或9.3-1101版本。