Package org.apache.derby.iapi.types

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


    }

    private void setValue(TypeId t, Number value ) throws StandardException {
       switch (t.getJDBCTypeId()) {
       case Types.TINYINT:
           setValue(new SQLTinyint((Byte)value));
            break;
       case Types.INTEGER:
           setValue(new SQLInteger((Integer)value));
            break;
       case Types.SMALLINT:
View Full Code Here


      scal = TypeId.SMALLINT_SCALE;
      if (valueInP)
      {
        maxwidth = TypeId.SMALLINT_MAXWIDTH;
        typeid = Types.TINYINT;
        setValue(new SQLTinyint((Byte) arg1));
      }
      break;

    case C_NodeTypes.INT_CONSTANT_NODE:
      precision = TypeId.INT_PRECISION;
View Full Code Here

TOP

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

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.