com.hfg.sql.table.field.DatabaseShortField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com_hfg Show documentation
Show all versions of com_hfg Show documentation
com.hfg xml, html, svg, and bioinformatics utility library
package com.hfg.sql.table.field;
import com.hfg.sql.jdbc.JDBCException;
import com.hfg.sql.table.DatabaseCol;
import com.hfg.sql.table.DatabaseTable;
import com.hfg.xml.XMLTag;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Types;
//------------------------------------------------------------------------------
/**
Database field that manages a short (2 byte) integer value.
@author J. Alex Taylor, hairyfatguy.com
*/
//------------------------------------------------------------------------------
// com.hfg XML/HTML Coding Library
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com
// [email protected]
//------------------------------------------------------------------------------
public class DatabaseShortField extends DatabaseField
{
//###########################################################################
// CONSTRUCTORS
//###########################################################################
//---------------------------------------------------------------------------
public DatabaseShortField(DatabaseCol inCol)
{
this(inCol, (Object) null);
}
//---------------------------------------------------------------------------
public DatabaseShortField(DatabaseCol inCol, Short inValue)
{
super(inCol, inValue);
}
//---------------------------------------------------------------------------
public DatabaseShortField(DatabaseCol inCol, Object inValue)
{
super(inCol, convertToShort(inValue));
}
//---------------------------------------------------------------------------
public DatabaseShortField(DatabaseCol inCol, ResultSet inResultSet)
{
super(inCol, inResultSet);
}
//---------------------------------------------------------------------------
public DatabaseShortField(XMLTag inXMLTag, DatabaseTable inTable)
{
super(inXMLTag, inTable);
}
//###########################################################################
// PUBLIC METHODS
//###########################################################################
//---------------------------------------------------------------------------
public void setValue(Integer inValue)
{
setValue(inValue != null ? inValue.shortValue() : null);
}
//---------------------------------------------------------------------------
protected void setValueFromResultSet(ResultSet inResultSet)
{
// Retrieve the index for the ResultSet column with the matching name.
// If no column with the proper name is present in the ResultSet, don't do anything.
Integer index = getColIndex(inResultSet);
if (index != null)
{
try
{
short value = inResultSet.getShort(index);
setInitialValue(0 == value && inResultSet.wasNull() ? null : value);
}
catch (SQLException e)
{
try
{
throw new JDBCException("Problem mapping " + getCol().name() + " value: " + inResultSet.getString(getCol().name()) + "!", e);
}
catch (SQLException e2)
{
throw new JDBCException("Problem mapping " + getCol().name() + " value!", e);
}
}
}
}
//---------------------------------------------------------------------------
public void setValueInPreparedStatement(PreparedStatement inPreparedStatement, int inIndex)
{
try
{
if (isNull())
{
inPreparedStatement.setNull(inIndex, Types.SMALLINT);
}
else
{
inPreparedStatement.setShort(inIndex, getValue());
}
}
catch (SQLException e)
{
throw new JDBCException("Problem setting column " + getCol().name() + " value into PreparedStatement!", e);
}
}
//---------------------------------------------------------------------------
public void setValueFromString(String inValue)
{
setValue(convertToShort(inValue));
}
//###########################################################################
// PRIVATE METHODS
//###########################################################################
//---------------------------------------------------------------------------
private static Short convertToShort(Object inValue)
{
Short shortValue = null;
if (inValue != null)
{
if (inValue instanceof Integer)
{
shortValue = ((Integer) inValue).shortValue();
}
else
{
try
{
shortValue = Short.parseShort(inValue.toString());
}
catch (Exception e)
{
// Ignore
}
}
}
return shortValue;
}
}