use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class ResultSetProxyImpl method getNCharacterStream.
@Override
public Reader getNCharacterStream(int columnIndex) throws SQLException {
FilterChainImpl chain = createChain();
Reader value = chain.resultSet_getNCharacterStream(this, columnIndex);
recycleFilterChain(chain);
return value;
}
use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class FilterChainTest_Clob method test_resultSet_getClob_1.
public void test_resultSet_getClob_1() throws Exception {
FilterChainImpl chain = new FilterChainImpl(dataSource);
Clob clob = chain.resultSet_getClob(new ResultSetProxyImpl(statement, mockResultSet, 1, null), "1");
Assert.assertTrue(clob instanceof ClobProxy);
Assert.assertEquals(1, invokeCount);
}
use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class FilterChainTest_Clob_2 method test_getClob.
public void test_getClob() throws Exception {
FilterChainImpl chain = new FilterChainImpl(dataSource);
Clob clob = chain.callableStatement_getClob(statement, 1);
Assert.assertTrue(clob instanceof ClobProxy);
Assert.assertEquals(1, invokeCount);
}
use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class FilterChainTest_Clob_2 method test_getObject_1.
public void test_getObject_1() throws Exception {
FilterChainImpl chain = new FilterChainImpl(dataSource);
Clob clob = (Clob) chain.callableStatement_getObject(statement, "1");
Assert.assertTrue(clob instanceof ClobProxy);
Assert.assertEquals(1, invokeCount);
}
use of com.alibaba.druid.filter.FilterChainImpl in project druid by alibaba.
the class FilterChainTest_Clob_2 method test_getClob_1.
public void test_getClob_1() throws Exception {
FilterChainImpl chain = new FilterChainImpl(dataSource);
Clob clob = chain.callableStatement_getClob(statement, "1");
Assert.assertTrue(clob instanceof ClobProxy);
Assert.assertEquals(1, invokeCount);
}
Aggregations