Package ke.go.moh.oec.oecsm.bridge.querycustomizers

Examples of ke.go.moh.oec.oecsm.bridge.querycustomizers.MSSQQueryCustomizer


    public QueryCustomizer getQueryCustomizer() {
        if (url.contains("mysql")) {
            return new MySQLQueryCustomizer();
        } else if (url.contains("sqlserver")) {
            return new MSSQQueryCustomizer();
        } else if (url.contains("postgresql")) {
            return new MSSQQueryCustomizer();
        } else if (url.contains("odbc")) {
            return new MSAccessQueryCustomizer();
        } else {
            return null;
        }
View Full Code Here

TOP

Related Classes of ke.go.moh.oec.oecsm.bridge.querycustomizers.MSSQQueryCustomizer

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.