All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.lucene.store.jdbc.dialect.OracleDialect Maven / Gradle / Ivy

/*
 * Copyright 2004-2009 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.lucene.store.jdbc.dialect;

/**
 * An Oracle dialect. Works for Oracle 9 and above.
 *
 * @author kimchy
 */
public class OracleDialect extends Dialect {

    /**
     * Oracle supports transactional scopes blobs.
     */
    public boolean supportTransactionalScopedBlobs() {
        return true;
    }

    /**
     * Oracle supports select ... for update.
     */
    public boolean supportsForUpdate() {
        return true;
    }

    /**
     * Oracle supports if table exists queries.
     */
    public boolean supportsTableExists() {
        return true;
    }

    public String sqlTableExists(String catalog, String schemaName) {
        if (schemaName == null) {
            return "select table_name from user_tables where lower(table_name) = ?";
        }
        return "select table_name from all_tables where lower(owner) = '" + schemaName.toLowerCase()
                + "' and lower(table_name) = ?";
    }

    public String getCascadeConstraintsString() {
        return " cascade constraints";
    }

    public String getForUpdateNowaitString() {
        return " for update nowait";
    }

    public boolean supportsCurrentTimestampSelection() {
        return true;
    }

    public String getCurrentTimestampSelectString() {
        return "select systimestamp from dual";
    }

    public boolean isCurrentTimestampSelectStringCallable() {
        return false;
    }

    public String getVarcharType(int length) {
        return "varchar2(" + length + " char)";
    }

    public String getBlobType(long length) {
        return "blob";
    }

    public String getNumberType() {
        return "number(10,0)";
    }

    public String getTimestampType() {
        return "timestamp";
    }

    public String getCurrentTimestampFunction() {
        return "current_timestamp";
    }

    public String getBitType() {
        return "number(1,0)";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy