Package org.hsqldb.types

Examples of org.hsqldb.types.BlobDataID


    protected BlobData readBlob() throws IOException {

        long id = super.readLong();

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


            return null;
        }

        long id = Long.parseLong(s);

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

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

        BlobData blob = new BlobDataID(lobID);

        return blob;
    }
View Full Code Here

TOP

Related Classes of org.hsqldb.types.BlobDataID

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.