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

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


        try {
            conn = dataSource.getConnection();
            DatabaseMetaData metaData = conn.getMetaData();

            if (metaData.getDatabaseProductName().matches("(?i).*hsql.*")) {
                return new HSQLDialect();

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

            } else if (metaData.getDatabaseProductName().matches("(?i).*mysql.*")) {
View Full Code Here

TOP

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

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.