Examples of ISqlJetVdbeMem


Examples of org.tmatesoft.sqljet.core.internal.ISqlJetVdbeMem

     * @see
     * org.tmatesoft.sqljet.core.internal.table.ISqlJetBtreeTable#getFieldType
     * (int)
     */
    public SqlJetValueType getFieldType(int field) throws SqlJetException {
        final ISqlJetVdbeMem value = getValueMem(field);
        if (value == null)
            return SqlJetValueType.NULL;
        return value.getType();
    }
View Full Code Here

Examples of org.tmatesoft.sqljet.core.internal.ISqlJetVdbeMem

     *
     * @see
     * org.tmatesoft.sqljet.core.internal.table.ISqlJetBtreeTable#getBlob(int)
     */
    public ISqlJetMemoryPointer getBlob(int field) throws SqlJetException {
        final ISqlJetVdbeMem value = getValueMem(field);
        if (value == null || value.isNull())
            return null;
        return value.valueBlob();
    }
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.