0

尝试使用 JDBI 在 PostgreSQL 中更新或插入包含 INTERVAL 的表时,出现以下错误: org.jdbi.v3.core.statement.UnableToCreateStatementException: No argument factory registered for '1 years 0 mons 0 days 0 hours 0 mins 0.0 secs' of qualified type org.postgresql.util.PGInterval [...]

最小的可重现示例:

  • 在数据库中:
CREATE TABLE testing (i INTERVAL);
  • 在 Kotlin 中(可能在纯 Java 中产生相同的结果):
Jdbi.create(PGSimpleDataSource().apply {
        setURL([connection string goes here])
    }).withHandle<Int, SQLException> { handle: Handle ->
        handle.createUpdate("INSERT INTO testing(i) VALUES (:interval)")
                .bind("interval", PGInterval(1, 0, 0, 0, 0, 0.0))
                .execute()
    }

我尝试将其作为字符串插入,因为查询接受“P1Y”,但这给了我ERROR: column "i" is of type interval but expression is of type character varying,如果第一种方法有效,这将是有意义的。

似乎只有 PGIntervals 成为预期的工作类型才有意义,因为从结果集中获取间隔时,会返回 PGInterval。

虽然我怀疑它是否重要,但我正在使用:

  • x86_64-pc-linux-gnu 上的 PostgreSQL 13.2 (Debian 13.2-1.pgdg100+1),由 gcc (Debian 8.3.0-6) 8.3.0 编译,64 位
  • org.jdbi:jdbi3-core:3.18.1 + org.jdbi:jdbi3-kotlin:3.18.1 + org.postgresql:postgresql:42.2.19
4

1 回答 1

1

我相信您应该使用PostgreSQL JDBI 插件来处理特定于 PostgreSQL 的类型。

于 2021-06-07T06:52:09.350 回答