use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class ResultSetProxyImpl method setFetchSize.
@Override
public void setFetchSize(int rows) throws SQLException {
FilterChainImpl chain = createChain();
chain.resultSet_setFetchSize(this, rows);
recycleFilterChain(chain);
}
use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class ResultSetProxyImpl method getInt.
@Override
public int getInt(String columnLabel) throws SQLException {
FilterChainImpl chain = createChain();
int value = chain.resultSet_getInt(this, columnLabel);
recycleFilterChain(chain);
return value;
}
use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class ResultSetProxyImpl method updateAsciiStream.
@Override
public void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException {
FilterChainImpl chain = createChain();
chain.resultSet_updateAsciiStream(this, columnLabel, x, length);
recycleFilterChain(chain);
}
use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class ResultSetProxyImpl method getFloat.
@Override
public float getFloat(String columnLabel) throws SQLException {
FilterChainImpl chain = createChain();
float value = chain.resultSet_getFloat(this, columnLabel);
recycleFilterChain(chain);
return value;
}
use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class ResultSetProxyImpl method getMetaData.
@Override
public ResultSetMetaData getMetaData() throws SQLException {
FilterChainImpl chain = createChain();
ResultSetMetaData value = chain.resultSet_getMetaData(this);
recycleFilterChain(chain);
return value;
}
Aggregations