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

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


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

            } 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.*")) {
View Full Code Here

TOP

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

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.