getGeneratedKeys
的方法和mysql中返回主键的实现有所区别
- pg的主键是
bigserial
mysql主键autoincrment
- 例如: pg与 mybatis中 如果没有
keyColumn="id"
这一行, 是不能返回id的. 但是mysql是可以的 - 查看mybatis源码得知
org.apache.ibatis.executor.statement.PreparedStatementHandler#instantiateStatement
@Override
protected Statement instantiateStatement(Connection connection) throws SQLException {
String sql = boundSql.getSql();
if (mappedStatement.getKeyGenerator() instanceof Jdbc3KeyGenerator) {
String[] keyColumnNames = mappedStatement.getKeyColumns();
if (keyColumnNames == null) {
return connection.prepareStatement(sql, PreparedStatement.RETURN_GENERATED_KEYS);
} else {
return connection.prepareStatement(sql, keyColumnNames);
}
} else if (mappedStatement.getResultSetType() == ResultSetType.DEFAULT) {
return connection.prepareStatement(sql);
} else {
return connection.prepareStatement(sql, mappedStatement.getResultSetType().getValue(), ResultSet.CONCUR_READ_ONLY);
}
}
- 意味着postgresql的话mapper中需要使用
keyColumn="id"
标注. - jdbc使用:
connection.prepareStatement(sql, PreparedStatement.RETURN_GENERATED_KEYS);
使用这种方法. id必须在insert 语句中connection.prepareStatement(sql, keyColumnNames);
可以标注id. 则主键必须是bigserial
- https://github.com/pgjdbc/pgjdbc/blob/master/pgjdbc/src/test/java/org/postgresql/test/jdbc3/GeneratedKeysTest.java
- https://github.com/pgjdbc/pgjdbc/issues/845
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)