Package | Description |
---|---|
com.ads.mm.db.dao |
Contains Utility Classes, Collection Classes, Java Bean Classes which are specific to System, Environment, Table, Schema, Component and Column.
|
Modifier and Type | Method and Description |
---|---|
DBTable |
DBTable.addExtendedProperty(KeyValue systemKeyValuesVo) |
DBTable |
DBSchema.getObject(java.lang.String objectName) |
DBTable |
DBTable.getParentTable()
Returns the parentTable.
|
DBTable |
DBSchema.getSynonym(java.lang.String synonymName)
Returns the DBTable Object for the specified synonymName.
|
DBTable |
DBColumn.getTable()
Returns the DBTable Object
|
DBTable |
DBSchema.getTable(DBTable.TableType type,
java.lang.String tableName)
Returns the DBTable Object for the specified TableType and tableName.
|
DBTable |
DBEnvironment.getTable(java.lang.String name)
Returns DBTable consisting of TableType, EntityBaseType, TableName, TableDefinition,TableComments, Audit Details, UserDefined Fields etc...
|
DBTable |
DBSchema.getTable(java.lang.String tableName)
Returns the DBTable object for the specified tableName.
|
DBTable |
DBSchema.getView(java.lang.String viewName)
Returns the DBTable Object for the specified viewName.
|
DBTable |
DBTable.setColumnIndexes(java.util.List<DBIndex> columnIndexes) |
DBTable |
DBTable.setExtendedProperties(java.util.List<KeyValue> extendedProperties) |
Modifier and Type | Method and Description |
---|---|
java.util.HashMap<DBTable.TableType,java.util.List<DBTable>> |
DBSchema.getAllLists()
Returns the List of DBTable.
|
java.util.HashMap<java.lang.String,DBTable> |
DBSchema.getSynonymMap()
Returns the HashMap of Synonyms.
|
java.util.List<DBTable> |
DBSchema.getSynonyms()
Returns the synonyms.
|
java.util.Map<java.lang.String,DBTable> |
DBEnvironment.getTableMap()
Returns the tableMapi.e parentTable, schemaName, tableDefinitionComments, tableDefinition,
tableComments, logicalTableName, actualTableName, auditHistory Details etc... |
java.util.HashMap<java.lang.String,DBTable> |
DBSchema.getTableMap()
Returns the HashMap of hmTables.
|
java.util.List<DBTable> |
DBSchema.getTables()
Returns the List of DBTable Objects.
|
java.util.List<DBTable> |
DBSchema.getTables(DBTable.TableType[] tableTypes)
Returns the List of DBTables
|
java.util.HashMap<java.lang.String,DBTable> |
DBSchema.getViewMap()
Returns the HashMap of hmViews.
|
java.util.List<DBTable> |
DBSchema.getViews()
Returns the List of DBTable Object
|
Modifier and Type | Method and Description |
---|---|
void |
DBEnvironment.addSchema(java.lang.String schemaName,
DBTable table)
Adds the specified schemaName to schemas.
|
void |
DBEnvironment.addTable(DBTable table)
Adds the table to the DBTable Object.
|
void |
DBSchema.addTable(DBTable table)
Adds Table as specified in DBTable Object.
|
void |
DBEnvironment.addTable(java.lang.String name,
DBTable table)
Adds the table to DBTable Object as specified in name.
|
void |
DBEnvironment.addTableByReferenceId(DBTable table) |
void |
DBSchema.addTableByReferenceId(DBTable table)
Adds Table as specified in DBTable Object.
|
void |
DBTable.copyColumns(DBTable table)
Copies the columns as of like the columns as specified.
|
void |
DBEnvironment.incrementTableCount(DBTable table) |
void |
DBTable.setParentTable(DBTable _parentTable)
Sets the parentTable as specified.
|
void |
DBColumn.setTable(DBTable table)
Sets the DBTable as specified.
|
Modifier and Type | Method and Description |
---|---|
void |
DBSchema.addTables(java.util.Collection<DBTable> values)
Adds the Tables as specified as Collection of DBTable Objects.
|
void |
DBEnvironment.addTables(java.util.Map<java.lang.String,DBTable> tables)
Adds the List of tables to DBTable.
|
void |
DBEnvironment.setTableMap(java.util.Map<java.lang.String,DBTable> tableMap)
Sets the tableMap as specified.
|