Package org.apache.derby.iapi.types

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


            break;
       case Types.DOUBLE:
           setValue(new SQLDouble((Double)value));
            break;
       case Types.REAL:
           setValue(new SQLReal((Float)value));
            break;
       default:
           if (SanityManager.DEBUG) {
                SanityManager.NOTREACHED();
           }
View Full Code Here


      scal = TypeId.REAL_SCALE;
      if (valueInP)
      {
        maxwidth = TypeId.REAL_MAXWIDTH;
        typeid = Types.REAL;
        setValue(new SQLReal((Float) arg1));
      }
      break;
     
    default:
      if (SanityManager.DEBUG)
View Full Code Here

TOP

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

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.