Package ke.go.moh.oec.oecsm.sync.schema

Examples of ke.go.moh.oec.oecsm.sync.schema.ShadowSchemaMiner


    public void synchronize() throws InaccessibleConfigurationFileException, DriverNotFoundException, SQLException {
        SourceDataMiner sourceDataMiner = new SourceDataMiner();
        ShadowDataMiner shadowDataMiner = new ShadowDataMiner();
        sourceDataMiner.start();
        shadowDataMiner.start();
        Database shadowDb = new ShadowSchemaMiner().mine(true);

        for (Table table : shadowDb.getTableList()) {
            SourceResultSet sourceRs = sourceDataMiner.mine(table);
            ShadowResultSet shadowRs = shadowDataMiner.mine(table);
View Full Code Here

TOP

Related Classes of ke.go.moh.oec.oecsm.sync.schema.ShadowSchemaMiner

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.