Examples of UnsupportedDataType


Examples of de.fuberlin.wiwiss.d2rq.sql.types.UnsupportedDataType

    case Types.TIMESTAMP:
      return new SQLTimestamp(this, name);

    case Types.ARRAY:
    case Types.JAVA_OBJECT:
      return new UnsupportedDataType(jdbcType, name);
     
    // TODO: What about the remaining java.sql.Types?
    case Types.DATALINK:
    case Types.DISTINCT:
    case Types.NULL:
View Full Code Here

Examples of de.fuberlin.wiwiss.d2rq.sql.types.UnsupportedDataType

      return new HSQLDBCompatibilityDoubleDataType(this);
    }
   
      // OTHER in HSQLDB 2.2.8 is really JAVA_OBJECT
    if (jdbcType == Types.OTHER) {
      return new UnsupportedDataType(jdbcType, name);
    }

    return super.getDataType(jdbcType, name, size);
  }
View Full Code Here

Examples of de.fuberlin.wiwiss.d2rq.sql.types.UnsupportedDataType

      }
     
    // Oracle binary file pointer
    // TODO: We could at least support reading from BFILE, although querying for them seems hard
      if ("BFILE".equals(name)) {
        return new UnsupportedDataType(jdbcType, name);
      }

      return null;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.