Package org.apache.lucene.store.jdbc.dialect

Examples of org.apache.lucene.store.jdbc.dialect.SQLServerDialect


            } else if (metaData.getDatabaseProductName().matches("(?i).*oracle.*")) {
                return new OracleDialect();

            } else if (metaData.getDatabaseProductName().matches("(?i).*microsoft.*")) {
                return new SQLServerDialect();

            } else if (metaData.getDatabaseProductName().matches("(?i).*h2.*")) {
                return new H2Dialect();

            } else {
View Full Code Here

TOP

Related Classes of org.apache.lucene.store.jdbc.dialect.SQLServerDialect

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.