Package org.apache.derby.iapi.types

Examples of org.apache.derby.iapi.types.SQLSmallint


            break;
       case Types.INTEGER:
           setValue(new SQLInteger((Integer)value));
            break;
       case Types.SMALLINT:
           setValue(new SQLSmallint((Short)value));
            break;
       case Types.BIGINT:
           setValue(new SQLLongint((Long)value));
            break;
       case Types.DECIMAL:
View Full Code Here


      scal = TypeId.SMALLINT_SCALE;
      if (valueInP)
      {
        maxwidth = TypeId.SMALLINT_MAXWIDTH;
        typeid = Types.SMALLINT;
        setValue(new SQLSmallint((Short) arg1));
      }
      break;

    case C_NodeTypes.LONGINT_CONSTANT_NODE:
      precision = TypeId.LONGINT_PRECISION;
View Full Code Here

TOP

Related Classes of org.apache.derby.iapi.types.SQLSmallint

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.