use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class ResultSetProxyImpl method getBinaryStream.
@Override
public InputStream getBinaryStream(int columnIndex) throws SQLException {
FilterChainImpl chain = createChain();
InputStream value = chain.resultSet_getBinaryStream(this, columnIndex);
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 getNClob.
@Override
public NClob getNClob(int columnIndex) throws SQLException {
FilterChainImpl chain = createChain();
NClob value = chain.resultSet_getNClob(this, columnIndex);
recycleFilterChain(chain);
return value;
}
use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class ResultSetProxyImpl method close.
@Override
public void close() throws SQLException {
FilterChainImpl chain = createChain();
chain.resultSet_close(this);
closeCount++;
recycleFilterChain(chain);
}
use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class ResultSetProxyImpl method updateBlob.
@Override
public void updateBlob(int columnIndex, Blob x) throws SQLException {
FilterChainImpl chain = createChain();
chain.resultSet_updateBlob(this, columnIndex, x);
recycleFilterChain(chain);
}
Aggregations