2

我使用带有 jdbc 驱动程序 9.4.1208.jre7 和 scalikejdbc 包装器的 postgresql 9.5

我的桌子是:

CREATE TABLE refs
(
  name character varying NOT NULL,
  custom json,
  prices integer[]
)

我可以使用 org.postgresql.util.PGobject 插入 json 值:

val res = new PGobject()
res.setType("json")
res.setValue("{'name': 'test'}")
res

我也想插入数组。我怎样才能做到这一点?我认为这会起作用:

  def toArrStr(a: Iterable[String]): PGobject = {
    val res = new PGobject()
    res.setType("ARRAY")
    res.setValue(s"{${a.map(i => '"' + i + '"').mkString(",")}}")
    res
  }

但这给了我例外:org.postgresql.util.PSQLException: Unknown type ARRAY

可能是我错过了 smth 但我找不到关于 PGObject 类的好文档。我认为 PGObject 类是为像我这样的目的而设计的,但它的行为并不像预期的那样

POSTGRES 有很多类型,不仅是数组,还有日期、日期时间、日期范围、时间戳范围等。我相信应该有对应类型的类型名称。

4

1 回答 1

2

我了解如何使用 PGObject 保存字符列表 []:

  def toArrStr(a: Iterable[String]): PGobject = {
    val res = new PGobject()
    res.setType("varchar[]")
    res.setValue(s"{${a.map(i => '"' + i + '"').mkString(",")}}")
    res
  }

保存数字数组:其中大小为 2,4,8 (smallint, int, bigint)

  def toArrNum(a: Iterable[AnyVal], size: Int): PGobject = {
    val res = new PGobject()
    res.setType(s"int$size[]")
    res.setValue(s"{${a.mkString(",")}}")
    res
  }
于 2016-03-23T23:19:32.907 回答