Package org.lealone.jdbc

Examples of org.lealone.jdbc.JdbcClob


     */
    public static Object convertTo(JdbcConnection conn, Value v, Class<?> paramClass) {
        if (paramClass == Blob.class) {
            return new JdbcBlob(conn, v, 0);
        } else if (paramClass == Clob.class) {
            return new JdbcClob(conn, v, 0);
        }
        if (v.getType() == Value.JAVA_OBJECT) {
            Object o = SysProperties.serializeJavaObject ? Utils.deserialize(v.getBytes()) : v.getObject();
            if (paramClass.isAssignableFrom(o.getClass())) {
                return o;
View Full Code Here

TOP

Related Classes of org.lealone.jdbc.JdbcClob

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.