public interface IDBTable
Modifier and Type | Method and Description |
---|---|
boolean |
containsColumn(String pColName) |
boolean |
containsIndex(String pIndexName) |
IDBColumn |
getColumn(String pColumnName) |
List<? extends IDBColumn> |
getColumns() |
List<? extends IDBForeignKey> |
getForeignKeys() |
List<? extends IDBIndex> |
getIndexes() |
List<? extends IDBColumn> |
getPkColumns() |
String |
getPkName() |
IDBPrimaryKey |
getPrimaryKey() |
String |
getTableName() |
String getTableName()
String getPkName()
getPrimaryKey()
returns nullIDBPrimaryKey getPrimaryKey()
IDBColumn getColumn(String pColumnName) throws NoSuchColumnException
pColumnName
- name of column to getNoSuchColumnException
- if the column name does not match any column of this tableList<? extends IDBColumn> getColumns()
List<? extends IDBColumn> getPkColumns()
List<? extends IDBForeignKey> getForeignKeys()
boolean containsIndex(String pIndexName)
boolean containsColumn(String pColName)
Copyright © 2017. All rights reserved.