Package org.g4studio.core.orm.xibatis.sqlmap.engine.config

Examples of org.g4studio.core.orm.xibatis.sqlmap.engine.config.MappedStatementConfig


    Integer timeoutInt = timeout == null ? null : new Integer(timeout);
    Integer fetchSizeInt = fetchSize == null ? null : new Integer(fetchSize);
    boolean allowRemappingBool = "true".equals(allowRemapping);

    MappedStatementConfig statementConf = state.getConfig().newMappedStatementConfig(id, statement,
        new XMLSqlSource(state, node), parameterMapName, parameterClass, resultMapName,
        additionalResultMapNames, resultClass, additionalResultClasses, resultSetType, fetchSizeInt,
        allowRemappingBool, timeoutInt, cacheModelName, xmlResultName);

    findAndParseSelectKey(node, statementConf);
View Full Code Here

TOP

Related Classes of org.g4studio.core.orm.xibatis.sqlmap.engine.config.MappedStatementConfig

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.