Package org.jiql.jdbc

Examples of org.jiql.jdbc.jiqlBlob


  if (Types.VARCHAR == type )
    return new String(v.toString());
  else if (Types.INTEGER == type || Types.BIGINT == type)
    return new Long(v.toString());
  else if (Types.BLOB == type && (v instanceof com.google.appengine.api.datastore.Blob))
    return new jiqlBlob(((com.google.appengine.api.datastore.Blob)v).getBytes());
  else if (Types.FLOAT == type)
    return new Float(v.toString());
  else if (Types.BOOLEAN == type)
    return new Boolean(v.toString());
  else if (Types.DATE == type){
View Full Code Here

TOP

Related Classes of org.jiql.jdbc.jiqlBlob

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.