public void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException
{
ResultSet resultSet = getUnderlyingResultSet();
try
{
resultSet.updateBlob(columnLabel, inputStream, length);
}
catch (Throwable t)
{
throw checkException(t);
}