Examples of SQLIndexFieldNameTranslator


Examples of org.openengsb.core.edbi.jdbc.names.SQLIndexFieldNameTranslator

    private HeadTableFactory tableFactory;

    public HeadTableEngine(DataSource dataSource, TypeMap typeMap) {
        this(dataSource, typeMap, new PrependingNameTranslator<>(new SQLIndexNameTranslator(), TABLE_PREFIX),
            new SQLIndexFieldNameTranslator());
    }
View Full Code Here

Examples of org.openengsb.core.edbi.jdbc.names.SQLIndexFieldNameTranslator

    public HistoryTableEngine(DataSource dataSource, TypeMap typeMap) {
        this(dataSource, typeMap, new PrependingNameTranslator<>(new SQLIndexNameTranslator(), TABLE_PREFIX));
    }

    public HistoryTableEngine(DataSource dataSource, TypeMap typeMap, NameTranslator<Index<?>> indexNameTranslator) {
        this(dataSource, typeMap, indexNameTranslator, new SQLIndexFieldNameTranslator());
    }
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.