Э
Size: a a a
Э
VS
VS
Э
М
AM
TZ
public BorderoProcedureResponse executeBorderoGenerationProcedure() {
SimpleJdbcCall jdbcCall = new SimpleJdbcCall(this.jdbcTemplate)
.withSchemaName("bordero")
.withProcedureName("simple");
Map<String, Object> out = jdbcCall.execute();
return null;
}
CREATE OR REPLACE PROCEDURE bordero.simple()
LANGUAGE plpgsql
AS $$
BEGIN
END;
$$;
Caused by: org.springframework.jdbc.BadSqlGrammarException: CallableStatementCallback; bad SQL grammar [{call bordero.simple()}]; nested exception is org.postgresql.util.PSQLException: ERROR: bordero.simple() is a procedure
Hint: To call a procedure, use CALL.
Position: 15
RK
TZ
RK
Э
VS
Э
VS
Э
Э
ch
РН
EntityManager
VS