Package org.hsqldb.types

Examples of org.hsqldb.types.ClobDataID


    protected ClobData readClob() throws IOException {

        long id = super.readLong();

        return new ClobDataID(id);
    }
View Full Code Here


            return null;
        }

        long id = Long.parseLong(s);

        return new ClobDataID(id);
    }
View Full Code Here

        if (data == null) {
            return null;
        }

        ClobData clob = new ClobDataID(lobID);

        return clob;
    }
View Full Code Here

TOP

Related Classes of org.hsqldb.types.ClobDataID

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.