Package org.tmatesoft.sqljet.core.table.SqlJetScope

Examples of org.tmatesoft.sqljet.core.table.SqlJetScope.SqlJetScopeBound


    }

    public static final SqlJetScope adjustScopeNumberTypes(SqlJetScope scope) {
        if (null == scope)
            return null;
        SqlJetScopeBound leftBound = scope.getLeftBound();
        SqlJetScopeBound rightBound = scope.getRightBound();
        if (leftBound != null) {
            leftBound = new SqlJetScopeBound(adjustNumberTypes(leftBound.getValue()), leftBound.isInclusive());
        }
        if (rightBound != null) {
            rightBound = new SqlJetScopeBound(adjustNumberTypes(rightBound.getValue()), rightBound.isInclusive());
        }
        return new SqlJetScope(leftBound, rightBound);
    }
View Full Code Here

TOP

Related Classes of org.tmatesoft.sqljet.core.table.SqlJetScope.SqlJetScopeBound

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.