BlobDataType.java

  1. /*
  2.  *
  3.  * The DbUnit Database Testing Framework
  4.  * Copyright (C)2002-2004, DbUnit.org
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  *
  20.  */

  21. package org.dbunit.dataset.datatype;

  22. import java.sql.Blob;
  23. import java.sql.PreparedStatement;
  24. import java.sql.ResultSet;
  25. import java.sql.SQLException;
  26. import java.sql.Types;

  27. import org.slf4j.Logger;
  28. import org.slf4j.LoggerFactory;

  29. /**
  30.  * @author Manuel Laflamme
  31.  * @version $Revision$
  32.  * @since Jan 12, 2004
  33.  */
  34. public class BlobDataType extends BytesDataType
  35. {
  36.     private static final Logger logger =
  37.             LoggerFactory.getLogger(BlobDataType.class);

  38.     public BlobDataType()
  39.     {
  40.         super("BLOB", Types.BLOB);
  41.     }

  42.     public BlobDataType(final String name, final int sqlType)
  43.     {
  44.         super(name, sqlType);
  45.     }

  46.     @Override
  47.     public Object getSqlValue(final int column, final ResultSet resultSet)
  48.             throws SQLException, TypeCastException
  49.     {
  50.         logger.debug("getSqlValue(column={}, resultSet={}) - start", column,
  51.                 resultSet);
  52.         final Blob rawValue = resultSet.getBlob(column);
  53.         final Object value = resultSet.wasNull() ? null : typeCast(rawValue);
  54.         logger.debug("getSqlValue: column={}, value is null?={}", column,
  55.                 value == null);
  56.         return value;
  57.     }

  58.     @Override
  59.     public void setSqlValue(final Object value, final int column,
  60.             final PreparedStatement statement)
  61.             throws SQLException, TypeCastException
  62.     {
  63.         if (logger.isDebugEnabled())
  64.         {
  65.             logger.debug(
  66.                     "setSqlValue(value={}, column={}, statement={}) - start",
  67.                     value, String.valueOf(column), statement);
  68.         }

  69.         statement.setObject(column, typeCast(value), super.getSqlType());
  70.     }
  71. }