Package com.scooterframework.orm.sqldataexpress.exception

Examples of com.scooterframework.orm.sqldataexpress.exception.UnsupportedStoredProcedureModeException


   
    public Parameter(int index, String name, String mode, int sqlDataType, String sqlDataTypeName) {
        if (!MODE_IN.equals(mode) &&
            !MODE_OUT.equals(mode) &&
            !MODE_RETURN.equals(mode)
       ) throw new UnsupportedStoredProcedureModeException();
       
        if (MODE_RETURN.equals(mode)) name = FUNCTION_RETURN;
       
        if (name == null || "".equals(name))
            throw new IllegalArgumentException("Parameter name can not be null or empty.");
View Full Code Here

TOP

Related Classes of com.scooterframework.orm.sqldataexpress.exception.UnsupportedStoredProcedureModeException

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.