Package org.openengsb.core.edbi.jdbc.names

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


    public static final String TABLE_PREFIX = "HEAD_";

    private HeadTableFactory tableFactory;

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


    public static final String TABLE_PREFIX = "HISTORY_";

    private HistoryTableFactory tableFactory;

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

TOP

Related Classes of org.openengsb.core.edbi.jdbc.names.SQLIndexNameTranslator

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.