Package liquibase.statement.core
Class FindForeignKeyConstraintsStatement
- java.lang.Object
-
- liquibase.statement.AbstractSqlStatement
-
- liquibase.statement.core.FindForeignKeyConstraintsStatement
-
- All Implemented Interfaces:
SqlStatement
public class FindForeignKeyConstraintsStatement extends AbstractSqlStatement
-
-
Field Summary
Fields Modifier and Type Field Description static StringRESULT_COLUMN_BASE_TABLE_COLUMN_NAMEstatic StringRESULT_COLUMN_BASE_TABLE_NAMEstatic StringRESULT_COLUMN_CONSTRAINT_NAMEstatic StringRESULT_COLUMN_FOREIGN_COLUMN_NAMEstatic StringRESULT_COLUMN_FOREIGN_TABLE_NAME-
Fields inherited from interface liquibase.statement.SqlStatement
EMPTY_SQL_STATEMENT
-
-
Constructor Summary
Constructors Constructor Description FindForeignKeyConstraintsStatement(String baseTableCatalogName, String baseTableSchemaName, String baseTableName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBaseTableCatalogName()StringgetBaseTableName()StringgetBaseTableSchemaName()voidsetBaseTableName(String baseTableName)voidsetBaseTableSchemaName(String baseTableSchemaName)-
Methods inherited from class liquibase.statement.AbstractSqlStatement
continueOnError, setContinueOnError, skipOnUnsupported
-
-
-
-
Field Detail
-
RESULT_COLUMN_BASE_TABLE_NAME
public static final String RESULT_COLUMN_BASE_TABLE_NAME
- See Also:
- Constant Field Values
-
RESULT_COLUMN_BASE_TABLE_COLUMN_NAME
public static final String RESULT_COLUMN_BASE_TABLE_COLUMN_NAME
- See Also:
- Constant Field Values
-
RESULT_COLUMN_FOREIGN_TABLE_NAME
public static final String RESULT_COLUMN_FOREIGN_TABLE_NAME
- See Also:
- Constant Field Values
-
RESULT_COLUMN_FOREIGN_COLUMN_NAME
public static final String RESULT_COLUMN_FOREIGN_COLUMN_NAME
- See Also:
- Constant Field Values
-
RESULT_COLUMN_CONSTRAINT_NAME
public static final String RESULT_COLUMN_CONSTRAINT_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getBaseTableCatalogName
public String getBaseTableCatalogName()
-
getBaseTableSchemaName
public String getBaseTableSchemaName()
-
setBaseTableSchemaName
public void setBaseTableSchemaName(String baseTableSchemaName)
-
getBaseTableName
public String getBaseTableName()
-
setBaseTableName
public void setBaseTableName(String baseTableName)
-
-