org.firebirdsql.jdbc.metadata.AbstractKeysMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaybird Show documentation
Show all versions of jaybird Show documentation
JDBC Driver for the Firebird RDBMS
The newest version!
/*
* Firebird Open Source JDBC Driver
*
* Distributable under LGPL license.
* You may obtain a copy of the License at http://www.gnu.org/copyleft/lgpl.html
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* LGPL License for more details.
*
* This file was created by members of the firebird development team.
* All individual contributions remain the Copyright (C) of those
* individuals. Contributors to this file are either listed here or
* can be obtained from a source control history command.
*
* All rights reserved.
*/
package org.firebirdsql.jdbc.metadata;
import org.firebirdsql.gds.ng.fields.RowDescriptor;
import org.firebirdsql.gds.ng.fields.RowValue;
import org.firebirdsql.jdbc.DbMetadataMediator;
import java.sql.DatabaseMetaData;
import java.sql.ResultSet;
import java.sql.SQLException;
import static org.firebirdsql.gds.ISCConstants.SQL_SHORT;
import static org.firebirdsql.gds.ISCConstants.SQL_VARYING;
import static org.firebirdsql.jdbc.metadata.FbMetadataConstants.OBJECT_NAME_LENGTH;
/**
* Common implementation for {@link GetExportedKeys}, {@link GetImportedKeys}, and {@link GetCrossReference}.
*
* @author Mark Rotteveel
* @since 5
*/
abstract class AbstractKeysMethod extends AbstractMetadataMethod {
private static final String COLUMNINFO = "COLUMNINFO";
private static final RowDescriptor ROW_DESCRIPTOR = DbMetadataMediator.newRowDescriptorBuilder(16)
.at(0).simple(SQL_VARYING | 1, OBJECT_NAME_LENGTH, "PKTABLE_CAT", COLUMNINFO).addField()
.at(1).simple(SQL_VARYING | 1, OBJECT_NAME_LENGTH, "PKTABLE_SCHEM", COLUMNINFO).addField()
.at(2).simple(SQL_VARYING, OBJECT_NAME_LENGTH, "PKTABLE_NAME", COLUMNINFO).addField()
.at(3).simple(SQL_VARYING, OBJECT_NAME_LENGTH, "PKCOLUMN_NAME", COLUMNINFO).addField()
.at(4).simple(SQL_VARYING | 1, OBJECT_NAME_LENGTH, "FKTABLE_CAT", COLUMNINFO).addField()
.at(5).simple(SQL_VARYING | 1, OBJECT_NAME_LENGTH, "FKTABLE_SCHEM", COLUMNINFO).addField()
.at(6).simple(SQL_VARYING, OBJECT_NAME_LENGTH, "FKTABLE_NAME", COLUMNINFO).addField()
.at(7).simple(SQL_VARYING, OBJECT_NAME_LENGTH, "FKCOLUMN_NAME", COLUMNINFO).addField()
.at(8).simple(SQL_SHORT, 0, "KEY_SEQ", COLUMNINFO).addField()
.at(9).simple(SQL_SHORT, 0, "UPDATE_RULE", COLUMNINFO).addField()
.at(10).simple(SQL_SHORT, 0, "DELETE_RULE", COLUMNINFO).addField()
.at(11).simple(SQL_VARYING, OBJECT_NAME_LENGTH, "FK_NAME", COLUMNINFO).addField()
.at(12).simple(SQL_VARYING, OBJECT_NAME_LENGTH, "PK_NAME", COLUMNINFO).addField()
.at(13).simple(SQL_SHORT, 0, "DEFERRABILITY", COLUMNINFO).addField()
.at(14).simple(SQL_VARYING, OBJECT_NAME_LENGTH, "JB_FK_INDEX_NAME", COLUMNINFO).addField()
.at(15).simple(SQL_VARYING, OBJECT_NAME_LENGTH, "JB_PK_INDEX_NAME", COLUMNINFO).addField()
.toRowDescriptor();
AbstractKeysMethod(DbMetadataMediator mediator) {
super(ROW_DESCRIPTOR, mediator);
}
@Override
final RowValue createMetadataRow(ResultSet rs, RowValueBuilder valueBuilder) throws SQLException {
return valueBuilder
.at(2).setString(rs.getString("PKTABLE_NAME"))
.at(3).setString(rs.getString("PKCOLUMN_NAME"))
.at(6).setString(rs.getString("FKTABLE_NAME"))
.at(7).setString(rs.getString("FKCOLUMN_NAME"))
.at(8).setShort(rs.getShort("KEY_SEQ"))
.at(9).setShort(mapAction(rs.getString("UPDATE_RULE")))
.at(10).setShort(mapAction(rs.getString("DELETE_RULE")))
.at(11).setString(rs.getString("FK_NAME"))
.at(12).setString(rs.getString("PK_NAME"))
.at(13).setShort(DatabaseMetaData.importedKeyNotDeferrable)
.at(14).setString(rs.getString("JB_FK_INDEX_NAME"))
.at(15).setString(rs.getString("JB_PK_INDEX_NAME"))
.toRowValue(true);
}
/**
* Maps a Firebird foreign key action name to the corresponding {@link java.sql.DatabaseMetaData} constant.
*
* @param firebirdActionName
* Firebird action name
* @return database metadata constant value
*/
private static Integer mapAction(String firebirdActionName) {
return switch (firebirdActionName) {
// NOTE: Firebird has no ON UPDATE/DELETE option RESTRICT, but absence of a ON UPDATE/DELETE clause stores
// "RESTRICT", which behaves the same as NO ACTION.
case "RESTRICT", "NO ACTION" -> DatabaseMetaData.importedKeyNoAction;
case "CASCADE" -> DatabaseMetaData.importedKeyCascade;
case "SET NULL" -> DatabaseMetaData.importedKeySetNull;
case "SET DEFAULT" -> DatabaseMetaData.importedKeySetDefault;
default -> null;
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy