从 Exposed 和 Postgresql 开始。创建表对象、连接到数据库和执行查询没有问题。但我不确定如何处理 Postgresql 特定的类型。我有一个 inet col
从 Exposed 和 Postgresql 开始。
创建表对象、连接数据库和执行查询都没有问题。但我不确定如何处理 Postgresql 特定的类型。
我有一个名为“sender-ip”的 inet col,并尝试使用 IP 地址作为字符串插入
IPList.insert {
it[sender_ip] = "127.0.0.1"
}
但是,插入时出现错误:
Exception in thread "main" org.jetbrains.exposed.exceptions.ExposedSQLException: org.postgresql.util.PSQLException: ERROR: column "sender_ip" is of type inet but expression is of type character varying
Hint: You will need to rewrite or cast the expression.
通过阅读 Exposed 文档,我发现有一种方法可以编写和执行原始 SQL。但是,有没有更好的方法来处理这种类型?