io.micronaut.data.jdbc.operations.OracleSqlExceptionMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-data-jdbc Show documentation
Show all versions of micronaut-data-jdbc Show documentation
Data Repository Support for Micronaut
/*
* Copyright 2017-2024 original 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
*
* https://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 io.micronaut.data.jdbc.operations;
import io.micronaut.core.annotation.Internal;
import io.micronaut.core.annotation.NonNull;
import io.micronaut.core.annotation.Nullable;
import io.micronaut.data.exceptions.DataAccessException;
import io.micronaut.data.exceptions.OptimisticLockException;
import io.micronaut.data.model.query.builder.sql.Dialect;
import jakarta.inject.Singleton;
import java.sql.SQLException;
/**
* The {@link SqlExceptionMapper} for {@link Dialect#ORACLE}.
* Handles {@link SQLException} for Oracle update commands. Can add more logic if needed, but this
* now handles only optimistic locking exception for given error code.
*
* @since 4.8.0
*/
@Singleton
@Internal
final class OracleSqlExceptionMapper implements SqlExceptionMapper {
private static final int JSON_VIEW_ETAG_NOT_MATCHING_ERROR = 42699;
@Override
public Dialect getDialect() {
return Dialect.ORACLE;
}
@Override
@Nullable
public DataAccessException mapSqlException(@NonNull SQLException sqlException) {
if (sqlException.getErrorCode() == JSON_VIEW_ETAG_NOT_MATCHING_ERROR) {
return new OptimisticLockException("ETAG did not match when updating record: " + sqlException.getMessage(), sqlException);
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy