public Statement createStatement(int resultSetType, //
int resultSetConcurrency, //
int resultSetHoldability //
) throws SQLException {
FilterChainImpl chain = createChain();
Statement stmt = chain.connection_createStatement(this, resultSetType, resultSetConcurrency,
resultSetHoldability);
recycleFilterChain(chain);
return stmt;
}