use of java.sql.RowId in project druid by alibaba.
the class ResultSetProxyImpl method getRowId.
@Override
public RowId getRowId(String columnLabel) throws SQLException {
FilterChainImpl chain = createChain();
RowId value = chain.resultSet_getRowId(this, columnLabel);
recycleFilterChain(chain);
return value;
}
Aggregations