有谁知道Java类型映射到Postgres ltree类型?
我创建一个像这样的表:
CREATE TABLE foo (text name, path ltree);
几个插入:
INSERT INTO foo (name, path) VALUES ( 'Alice', 'ROOT.first.parent');
INSERT INTO foo (name, path) VALUES ( 'Bob', 'ROOT.second.parent');
INSERT INTO foo (name, path) VALUES ( 'Ted', 'ROOT.first.parent.child');
INSERT INTO foo (name, path) VALUES ( 'Carol', 'ROOT.second.parent.child');
那里没什么奇怪的。现在,我想使用PreparedStatment对此进行批处理:
public final String INSERT_SQL = "INSERT INTO foo( name, path) VALUES (?, ?)";
public void insertFoos(final List<Foo> foos)
{
namedParameterJdbcTemplate.getJdbcOperations().batchUpdate(INSERT_SQL, new BatchPreparedStatementSetter()
{
@Override
public void setValues(PreparedStatement ps, int i) throws SQLException
{
ps.setString(1, foos.get(i).getName());
ps.setString(2, foos.get(i).getPath());
}
@Override
public int getBatchSize()
{
return foos.size();
}
});
}
这将产生以下错误:
org.springframework.jdbc.BadSqlGrammarException: PreparedStatementCallback; bad SQL grammar [INSERT INTO foo( name, path) VALUES (?, ?)]; nested exception is
org.postgresql.util.PSQLException: ERROR: column "path" is of type ltree but expression is of type character varying
Hint: You will need to rewrite or cast the expression.
显然我缺少了一些东西。为什么我可以使用纯SQL而不是JDBC插入“某物”?
最佳答案
如果prepareStatemnt.setString()无法正常工作,为什么不创建存储过程并使用String参数从CallableStatement调用存储过程以通过ltree插入行呢?
其他解决方案可能是ps.setObject(2, foos.get(i).getPath(), Types.OTHER);
,但现在无法检查。