我创建了一个带有CITEXT列的表,CITEXT(不区分大小写的TEXT)是我以前使用CREATE EXTENSION citext;加载的扩展

CREATE TABLE artists (
    artist_id   SERIAL   PRIMARY KEY,
    artist      CITEXT   UNIQUE NOT NULL
);

CREATE OR REPLACE FUNCTION add_artist(_artist CITEXT) RETURNS INTEGER AS $$
    DECLARE
        _artist_id INT;
    BEGIN
        SELECT artist_id INTO _artist_id FROM artists WHERE artist = _artist;

        IF (_artist_id IS NULL) THEN
            INSERT INTO artists (artist) VALUES (
                _artist
            ) RETURNING artist_id INTO _artist_id;
        END IF;

        RETURN _artist_id;
    END;
$$ LANGUAGE plpgsql;

现在我试图用java调用函数
public int addArtist(String name) throws SQLException {
    int artist_id;

    try (CallableStatement callableStatement =
            connection.prepareCall("{ ? = CALL add_artist(?) }")) {
        callableStatement.registerOutParameter(1, Types.INTEGER);
        callableStatement.setString(2, name);
        callableStatement.execute();
        artist_id = callableStatement.getInt(1);
    }

    return (artist_id != 0) ? artist_id : -1;
}

如果传递给sql函数的参数类型为INTEGERVARCHAR(n),则调用函数的方法也可以正常工作。
我假设callableStatement.setString(2, name);正在抛出SQLException,因为setString()将用于VARCHAR(n)字段?
org.postgresql.util.PSQLException: ERROR: function add_artist(character varying) does not exist
  Hint: No function matches the given name and argument types. You might need to add explicit type casts.
  Position: 15
at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2182)
at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1911)
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:173)
at org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:615)
at org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:465)
at org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:458)
at postgresql.PostgreSQL.addArtist(PostgreSQL.java:61)
at postgresql.PostgreSQLConnector.main(PostgreSQLConnector.java:26)

CallableStatement没有类似于setText(int i, String text)的方法-我必须使用什么来代替?

最佳答案

我终于明白了。我所要做的就是使用CITEXT将参数转换为::citext

public int addArtist(String name) throws SQLException {
    int artist_id;

    try (CallableStatement callableStatement =
            connection.prepareCall("{ ? = CALL add_artist(?::citext) }")) {
        callableStatement.registerOutParameter(1, Types.INTEGER);
        callableStatement.setString(2, name);
        callableStatement.execute();
        artist_id = callableStatement.getInt(1);
    }

    return (artist_id != 0) ? artist_id : -1;
}

10-08 04:37