gpt4 book ai didi

java - 将 EnumType 传递给 Postgres 函数

转载 作者:行者123 更新时间:2023-11-29 13:13:03 25 4
gpt4 key购买 nike

首先....我有一个这样的postgres函数:

CREATE OR REPLACE FUNCTION auth.MyFunction (
platform autorizacion.e_tipo_plataforma, //Enum Type
pAppId varchar,
pVersion integer
)

e_tipo_plataforma 是:

CREATE TYPE autorizacion.e_tipo_plataforma AS ENUM (
'Web', 'Escritorio', 'Movil', 'Servicio');

如您所见,调用函数的参数是枚举类型 (e_tipo_plataforma)

我正在尝试将此 EnumType 发送到 Postgres CallableStatement:

String query="{call auth.MyFunction(?,?,?)}";
CallableStatement ps=conn.prepareCall(funcionLlamar);

第一个意图:ps.setObject("p_tipo_plataforma", usuario.tipoPlataforma);哪里

usuario.tipoPlataforma enter image description here

错误:

java.sql.SQLFeatureNotSupportedException: Method org.postgresql.jdbc.PgCallableStatement.setObject(String,Object) is not yet implemented.

第二个意图:ps.setObject(1, usuario.tipoPlataforma.name());

错误:

function auth.MyFunction(character varying, character varying, integer) does not exist

更新:第三个意图:ps.setObject(1, usuario.tipoPlataforma);

错误:

Can't infer the SQL type to use for an instance of enumerator.TipoPlataforma. Use setObject() with an explicit Types value to specify the type to use.

问题是,如果 postgres 中的函数只接受这种类型,如何将 EnumType 作为参数发送?

最佳答案

您可以将枚举值作为字符串传递(当然,假设您的 Java 和 PostgreSQL 枚举的名称匹配!),并把将字符串转换为枚举的繁重工作留给数据库:

ps.setString("p_tipo_plataforma", usuario.tipoPlataforma.name());

关于java - 将 EnumType 传递给 Postgres 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52451677/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com