Package org.jitterbit.integration.data.structure.database

Examples of org.jitterbit.integration.data.structure.database.DbTablesFactory.create()


    private DbTables toDbTables(Map<DatabaseObject, Integer> effectiveTableUsage, BeginEndQuote quotes) {
        ObjectAliasGenerator aliasGenerator = new ObjectAliasGenerator(quotes, getIncludedTables());
        aliasGenerator.setTableUsage(effectiveTableUsage);
        DbTablesFactory factory = new DbTablesFactory(aliasGenerator);
        return factory.create(effectiveTableUsage, quotes);
    }

    public void includeTables(Iterable<DatabaseObject> tables) {
        for (DatabaseObject table : tables) {
            if (!isTableIncluded(table)) {
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.