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

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


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

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

            } else {
                String msg = "Unsupported database: " + metaData.getDatabaseProductName() +
                        ". Database will not be created automatically by the WSO2 Registry. " +
                        "Please create the database using appropriate database scripts for " +
View Full Code Here

TOP

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

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.