|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Table in planetj.database |
Methods in planetj.database that return Table | |
static Table |
Table.createTable(java.lang.String systemAlias,
java.lang.String libName,
java.lang.String tblName)
Creates and returns a new Table using the given system alias, library name, and table name. |
static Table |
Table.createTable(java.lang.String pSystemAlias,
java.lang.String pLibraryName,
java.lang.String pTableName,
java.lang.Class pTableClass)
Creates and returns a new Table using the given system Alias, library name, and table name. |
static Table |
Table.getTable(java.lang.String pSystemAlias,
java.lang.String pLibraryName,
java.lang.String pTableName)
Get the Table for the given table name using the specified library name and system url. |
static Table |
Table.getTable(java.lang.String pSystemAlias,
java.lang.String pLibraryName,
java.lang.String pTableName,
boolean create)
Get the Table for the given table name using the specified library name and system url. |
Table |
SQLContext.getTable()
Gets the table which is being queried. |
Table |
SQLContext.getTable(int pTableIndex)
Gets the table being queried with the given index. |
Table |
RowCollection.getTable()
Gets the table object for this RowCollection. |
Table |
Row.getFDTable()
Get's a table to use when searching for FDs. |
Table |
Row.getTable()
Get's this field's table. |
Table |
Row.getTable(int pTableIndex)
|
Table |
Library.createTable(java.lang.String pTableName)
Returns the Table in this Library with the given name. |
Table |
Library.createTable(java.lang.String pTableName,
java.lang.Class pTableClass)
Returns the Table in this Library with the given name. |
Table |
Library.getTable(java.lang.String pTableName)
Returns the Table in this Library with the given name. |
Table |
Library.getTable(java.lang.String pTableName,
boolean pCreate)
Returns the Table in this Library with the given name. |
Table |
Library.removeTable(java.lang.String pTableName)
Removes the Table with the given name. |
Table |
ITableDependency.getPrimaryTable()
Gets the primary table on which other tables depend |
Table |
ForeignKey.getForeignKeyTable()
Gets the foreign key table whose columns have a foreign key reference to columns in another table |
Table |
ForeignKey.getPrimaryTable()
Gets the primary table whose columns are referenced as foreign keys by another table |
Table |
Field.getTable()
Returns the Table to which this Field belongs. |
Methods in planetj.database with parameters of type Table | |
static java.lang.StringBuffer |
Table.appendFullyQualifiedName(Table t,
java.lang.StringBuffer sb)
Appends the library qualified name of the table, such as "mylibrary.mytable" |
java.lang.String |
Table.getCreationSQL(Table table)
Gets the "CREATE TABLE" SQL statement that can be used to duplicate this table on another system. |
java.lang.String |
Table.getCreationSQL(Table table,
java.util.List fieldDescriptors)
Gets the "CREATE TABLE" SQL statement that can be used to duplicate this table on another system. |
java.util.List |
Table.getFieldDescriptorsWithUsageIdOverlap(Table t)
Gets the FD's in this table whose usageids equal the usageids in one or more fields of another table |
static java.lang.StringBuffer |
SQLGenerator.appendTableName(Table table,
java.lang.StringBuffer sb)
Appends the fully qualified table name to the StringBuffer. |
static java.lang.String |
SQLGenerator.generateCreateTableStatementFromFDs(Table pTable)
Generates a CREATE TABLE Statement that constructs a table based on the specified Table |
static java.lang.String |
SQLGenerator.generateCreateTableStatementFromRowCollection(Table pTable,
RowCollection rc)
Generates a CREATE TABLE Statement that constructs a table based on the specified Table |
static java.lang.String |
SQLGenerator.generateSelectAssociationStatement(Table pTable,
java.lang.String pSelectFields,
java.util.Map pFldMap)
Generates a SQL select statement for retreiving Row associations Examples: |
static java.lang.String |
SQLGenerator.generateSelectAssociationStatementForRowCollection(Table pTable,
java.lang.String pSelectFields,
java.util.Map pTargetFDSandSourceFlds)
Generates a SQL select statement for retreiving RowCollection associations Examples: |
static java.lang.String |
SQLGenerator.generateSelectOperationStatement(Table pTable,
java.lang.String pSelectOperation,
java.lang.String pColumnName,
java.lang.String pWhereClause)
Generates a SQL select statement for the givin pSelectOperation with an optional pColumnName Examples: COUNT -> generateSelectOperationStatement(, SQLGenerator.COUNT, null, |
static java.lang.String |
SQLGenerator.generateSelectSQL(Table tbl,
java.util.Map fdAndValues)
Generate the SQL based on the Table and a Map of FieldDescriptors and Values Creation date: (1/16/2002 3:14:14 PM) |
static java.lang.String |
SQLGenerator.getTableName(Table table)
Gets fully qualified name of a Table object. |
void |
SQLContext.addTable(Table newTable)
Adds a table to this query. |
void |
SQLContext.removeTable(Table pTable)
Adds a table to this query. |
void |
RowCollection.addTable(Table table)
Adds a Table to the list of Table to which this RowCollection corresponds. |
static RowCollection |
RowCollection.createRowCollection(java.lang.Class rcSubclass,
Table table,
java.util.List fieldNames)
Creates a RowCollection based on a RowCollection subclass, table, and field names |
FieldDescriptorCollection |
RowCollection.getFieldDescriptorCollection(Table pTable)
Deprecated. Use Table.getFieldDescriptorCollection() instead |
void |
RowCollection.removeTable(Table table)
Removes a Table to the list of Table to which this RowCollection corresponds. |
void |
RowCollection.setTable(Table pTable)
Sets the table that is associated with this row collection Creation date: (1/22/2002 5:59:14 PM) |
static Row |
Row.create(Table table)
Create and return a new Row of class Row.class and initializes the row with all of the tables fields. |
static Row |
Row.create(Table table,
boolean initializeRow)
Create and return a new Row of class Row.class and initializes the row with all of the tables fields if specified. |
static Row |
Row.create(Table table,
boolean initializeRow,
ExecutingContext ec)
Create and return a new Row and also set its Table. |
static Row |
Row.create(Table table,
java.lang.Class rowSubClass)
Create and return a new Row of the given Class type and also set its Table. |
static Row |
Row.create(Table table,
java.lang.Class rowSubClass,
boolean initializeRow)
Create and return a new Row of the given Class type and also set its Table. |
static Row |
Row.create(Table table,
java.lang.Class rowSubClass,
boolean initializeRow,
ExecutingContext pExecutingContext)
Create and return a new Row of the given Class type and also set its Table. |
static Row |
Row.create(Table table,
java.lang.Class rowSubClass,
ExecutingContext executingContext)
Create and return a new Row of the given Class type and also set its Table. |
static Row |
Row.create(Table table,
java.lang.Class rowSubClass,
java.util.List fieldNames,
boolean initializeRow)
Create and return a new Row of the given Class type and also set its Table. |
static Row |
Row.create(Table table,
java.lang.Class rowSubClass,
java.util.List fieldNames,
boolean initializeRow,
ExecutingContext pExecutingContext)
Create and return a new Row of the given Class type and also set its Table. |
static Row |
Row.create(Table table,
java.util.List fieldNames,
boolean initialize)
Create and return a new Row for the given table and field names. |
static Row |
Row.create(Table table,
java.util.List fieldNames,
boolean initializeRow,
ExecutingContext pExecutingContext)
Create and return a new Row of the given Class type and also set its Table. |
static Row |
Row.create(Table table,
java.util.List names,
ExecutingContext ec)
Create and return a new Row and also set its Table. |
void |
Row.addTable(Table pTable)
Sets the table to which this row belongs. |
java.lang.Class |
Row.getDisjointRowClass(Table table,
int mode,
ExecutingContext ec)
Gets the row class which will be used for containing the unjoined data in this row. |
FieldDescriptorRow |
Row.getFieldDescriptor(java.lang.String pFieldName,
Table pTable)
Return the IFieldDescriptor for the Field with the specified name. |
java.util.List |
Row.getFieldNames(Table table)
Gets the names of all fields in this row which are from the specified table. |
static PhysicalTable |
PhysicalTable.getPhysicalTable(Table pTable)
Gets the PhysicalTable object which corresponds to the given table |
protected void |
ForeignKey.setForeignKeyTable(Table t)
Sets the foreign key table whose columns have a foreign key reference to columns in another table |
protected void |
ForeignKey.setPrimaryTable(Table t)
Sets the primary table whose columns are referenced as foreign keys by another table |
void |
Field.setTable(Table pTable)
Sets this Fields Table to which this Field belongs. |
static int |
DataEngine.copyRowCollectionToTable(java.sql.Connection connection,
Table copyToTable,
RowCollection rc)
This method copies a row collection to the specified table. |
static int |
DataEngine.copyRowCollectionToTable(Table pCopyToTable,
RowCollection pRC)
This method copies a row collection to the specified table. |
static boolean |
DataEngine.createTable(java.sql.Connection pConnection,
Table pTable,
java.lang.String pCreateTableSQL)
Creates a database table using the specified information. |
static boolean |
DataEngine.createTable(Table pTable)
Creates a database table from the specified Table. |
static boolean |
DataEngine.createTable(Table pTable,
java.lang.String pCreateTableSQL)
Creates a database table using the specified information. |
static boolean |
DataEngine.doesTableExist(java.sql.Connection pConnection,
Table pTable)
Returns whether or not a table exists in a database using the specified information. |
static boolean |
DataEngine.doesTableExist(java.sql.Connection pConnection,
Table pTable,
boolean pUseCaching)
Returns whether or not a table exists in a database using the specified information. |
static boolean |
DataEngine.doesTableExist(Table pTable)
Returns whether or not a table exists in a database using the specified information. |
static boolean |
DataEngine.doesTableExist(Table pTable,
boolean pUseCaching)
Returns whether or not a table exists in a database using the specified information. |
static void |
DataEngine.dropTable(java.sql.Connection pConnection,
Table pTable)
Deletes a the given Table from the database. |
static void |
DataEngine.dropTable(Table pTable)
Deletes a the given Table from the database. |
static boolean |
DataEngine.isTrackDataAccess(Table t)
|
static java.math.BigDecimal |
DataEngine.selectColumnSum(Table pTable,
java.lang.String pColumnName,
java.lang.String pWhereClause)
This will return a BigDecimal with a value of the total sum of the column specified in pColumnName Creation date: (4/2/2002 1:12:36 PM) |
static java.lang.Integer |
DataEngine.selectRowCount(Table pTable,
java.lang.String pWhereClause)
This will return an Integer with a value of the total number of rows in pTable Creation date: (4/2/2002 1:12:36 PM) |
Constructors in planetj.database with parameters of type Table | |
RowCollection(Table table)
Creates a new RowCollection for a specific table. |
|
RowCollection(Table table,
java.util.List fieldNames)
Creates a new RowCollection containing the given fields for a specific table. |
Uses of Table in planetj.database.connection |
Methods in planetj.database.connection that return Table | |
static Table |
ConnectionRow.getConnectionTable(java.lang.String pSystemAlias)
|
Uses of Table in planetj.database.field |
Methods in planetj.database.field with parameters of type Table | |
java.lang.Object |
IFieldIncrementor.getNextValue(FieldDescriptorRow pFD,
Table pTable)
Gets the next value of a field for which the auto-increment value is true. |
protected java.lang.Object |
FieldIncrementor.findLastValue(Table pTable,
java.lang.String pFieldName)
Deprecated. replaced by findLastValue (Table pTable, Field pField) |
protected java.lang.Object |
FieldIncrementor.findLastValue(Table pTable,
Field pField)
Queries the database for the maximum value in the specified column of the specified table |
protected java.lang.Object |
FieldIncrementor.findLastValue(Table pTable,
FieldDescriptorRow pFD)
Queries the database for the maximum value in the specified column of the specified table |
java.lang.Object |
FieldIncrementor.getNextValue(FieldDescriptorRow pFD,
Table pTable)
Gets the next value of a field for which the auto-increment value is true. |
protected java.lang.Object |
FieldIncrementor.getNextValue(Table pTable,
Field pField,
java.lang.Class pClass)
Gets the next value of a field for which the auto-increment value is true. |
protected java.lang.Object |
FieldIncrementor.getNextValue(Table pTable,
FieldDescriptorRow pFD,
java.lang.Class pClass)
Gets the next value of a field for which the auto-increment value is true. |
protected java.lang.Object |
FieldIncrementor.getNextValue(Table pTable,
FieldDescriptorRow pFD,
Field pField,
java.lang.Class pClass)
Gets the next value of a field for which the auto-increment value is true. |
protected java.util.Map |
FieldIncrementor.getNextValueMap(Table pTable)
Gets the auto-increment Map for a Table |
Uses of Table in planetj.database.fielddescriptors |
Subclasses of Table in planetj.database.fielddescriptors | |
class |
FieldDataTable
|
Methods in planetj.database.fielddescriptors that return Table | |
Table |
FieldDescriptorRow.getColumnTable()
Returns the table that this field descriptor is in. |
Table |
FieldDescriptorRow.getColumnTable(boolean oldValue)
Returns the table that this field descriptor is in. |
static Table |
FieldDescriptorManager.getFieldDataTable(java.lang.String pFDSystemAlias)
Returns the System ((ex. |
static Table |
FieldDescriptorManager.getFieldDataUserTable(java.lang.String pFDSystemAlias)
Returns the User Field data file Table object (FIELDDATA). |
Methods in planetj.database.fielddescriptors with parameters of type Table | |
static TableDescriptor |
TableDescriptor.createTableDescriptor(Table targetTable)
Creates a new TableDescriptor object for a Table |
static java.lang.String |
TableDescriptor.getTableDescriptorName(Table t)
Gets the name of a TableDescriptor based on a table |
void |
TableDescriptor.setName(Table t)
Sets the name of this TableDescriptor from a table |
void |
IFDModifier.modifyFDs(java.util.List fds,
Table t)
Modifies a List containing FD's which were read from DB or RS metadata. |
void |
FieldDescriptorRow.setTable(Table pTable)
Sets the table to which this row belongs. |
static void |
FieldDescriptorManager.addFD(FieldDescriptorRow pFD,
Table pTable)
Removes all FieldDescriptors for all systems. |
static void |
FieldDescriptorManager.addFD(FieldDescriptorRow pFD,
Table pTable,
boolean pReplace)
Removes all FieldDescriptors for all systems. |
static void |
FieldDescriptorManager.addFDs(java.util.List pFDs,
Table pTable)
Removes all FieldDescriptors for all systems. |
static void |
FieldDescriptorManager.addFDs(java.util.List pFDs,
Table pTable,
boolean pReplace)
Sets the FD's for a table |
static void |
FieldDescriptorManager.addFDs(RowCollection pFDRows,
Table pTable)
Add field descriptors. |
static void |
FieldDescriptorManager.addFDs(RowCollection pFDRows,
Table pTable,
boolean pReplace)
Add field descriptors. |
static FieldDescriptorCollection |
FieldDescriptorManager.clearFieldDescriptors(Table table)
Removes all FieldDescriptors for all systems. |
static FieldDescriptorRow |
FieldDescriptorManager.createFDFromDBMetaData(java.sql.Connection pConnection,
Table pTable,
java.lang.String pFieldName)
Create a field descriptor for the specified field name in the table from the given connection. |
static FieldDescriptorRow |
FieldDescriptorManager.createFDFromDBMetaData(Table pTable,
java.lang.String pFieldName)
Create a field descriptor for the specified field name in the table. |
static FieldDescriptorRow |
FieldDescriptorManager.createFDFromRSMetaData(int pColumnIndex,
java.sql.ResultSetMetaData pRSMetaData,
Table pTable)
Creates and returns a FieldDescriptor using the given ResultSetMetaData and column index. |
static RowCollection |
FieldDescriptorManager.createFDsFromDBMetaData(java.sql.Connection connection,
Table table)
Create field descriptors for the specified Table. |
static RowCollection |
FieldDescriptorManager.createFDsFromDBMetaData(Table pTable)
Create field descriptors for the specified Table. |
static RowCollection |
FieldDescriptorManager.createFDsFromFile(Table pTable)
Retrieves and creates any new FieldDescriptors from the Field data file that have not yet been created for the specified Table. |
static RowCollection |
FieldDescriptorManager.getFDsFromFile(Table pTable,
int pNumPerPage)
|
static RowCollection |
FieldDescriptorManager.getFDsFromFile(Table pTable,
int pNumPerPage,
java.util.List orderByColumns)
|
static FieldDescriptorRow |
FieldDescriptorManager.getFieldDescriptor(java.lang.String pFieldName,
Table pTable)
Returns the FieldDescriptor for the given Field name. |
static FieldDescriptorRow |
FieldDescriptorManager.getFieldDescriptor(java.lang.String pFieldName,
Table pTable,
boolean pCheckFieldDataFile)
Returns the FieldDescriptor for the given Field name. |
static FieldDescriptorCollection |
FieldDescriptorManager.getFieldDescriptors(Table pTable)
Returns a map of FieldDescriptors created for the given Table. |
static FieldDescriptorCollection |
FieldDescriptorManager.getFieldDescriptors(Table pTable,
boolean pCheckFieldDataFile)
Returns a map of FieldDescriptors created for the given Table. |
protected static void |
FieldDescriptorManager.removeFD(FieldDescriptorRow fd,
Table table)
|
Uses of Table in planetj.database.possiblevalues |
Subclasses of Table in planetj.database.possiblevalues | |
class |
PossibleValueTable
|
Uses of Table in planetj.database.sql |
Methods in planetj.database.sql that return Table | |
static Table |
SQLStatement.getAlteredTable(java.lang.String pSQL,
java.lang.String pSystemAlias)
Gets the table that will be altered by this SQL statement. |
Table |
ColumnToken.getTable(java.lang.String pSystemAlias)
Gets the Table in which the column referenced by this ColumnToken exists. |
Uses of Table in planetj.database.table |
Subclasses of Table in planetj.database.table | |
class |
AdministrationTable
The ADMIN table |
class |
ApplicationTable
The APPLICATION table |
class |
ConnectionTable
The CONNECTIONS table |
class |
OperationTable
The SQLOPS table |
class |
ThemeTable
The THEME table |
Methods in planetj.database.table that return Table | |
Table |
TableCollection.getTable(int index)
Gets a table out of the collection by index |
Methods in planetj.database.table with parameters of type Table | |
boolean |
TableCollection.addTable(Table t)
Adds a table to this TableCollection |
Uses of Table in planetj.dataengine |
Methods in planetj.dataengine that return Table | |
static Table |
SessionManager.getTable(HttpServletRequest pRequest)
Gets the default Table from the session. |
static Table |
SessionManager.getTable(HttpServletRequest pRequest,
java.lang.String pTableKey)
Gets the Table from the session identified by the given key. |
Table |
AbstractTableManager.getTable(java.lang.String metaDataAlias)
Gets the Table object this manager manages. |
Methods in planetj.dataengine with parameters of type Table | |
static java.lang.String |
RowClassGenerator.generateRowClass(Table pTable,
RowClassProperties pProps)
Generates a subclass of the Row class. |
static java.lang.String |
RowClassGenerator.generateRowInterface(Table pTable,
RowInterfaceProperties pProps)
Generates an interface based on a Database Row. |
Uses of Table in planetj.dataengine.cache |
Subclasses of Table in planetj.dataengine.cache | |
class |
CacheDetailsTable
|
Methods in planetj.dataengine.cache with parameters of type Table | |
java.util.List |
RowKeyTableCache.getAll(Table table)
Returns all the Objects for a given table that are in the cache. |
Uses of Table in planetj.dataengine.email |
Constructors in planetj.dataengine.email with parameters of type Table | |
EmailRowCollection(Table table)
EmailRowCollection constructor comment. |
|
EmailRowCollection(Table table,
java.util.List fieldNames)
EmailRowCollection constructor comment. |
Uses of Table in planetj.dataengine.email.html |
Constructors in planetj.dataengine.email.html with parameters of type Table | |
HTMLEmailRowCollection(Table table)
EmailRowCollection constructor comment. |
|
HTMLEmailRowCollection(Table table,
java.util.List fieldNames)
EmailRowCollection constructor comment. |
Uses of Table in planetj.dataengine.parameter |
Methods in planetj.dataengine.parameter that return Table | |
Table |
TableParameter.getVirtualTable()
Gets the virtual table. |
Uses of Table in planetj.dataengine.security |
Methods in planetj.dataengine.security that return Table | |
static Table |
DEUser2Group.getTable(java.lang.String system)
|
static Table |
DEUser.getTable(java.lang.String system)
|
static Table |
DEGroup2Authorization.getTable(java.lang.String system)
|
Methods in planetj.dataengine.security with parameters of type Table | |
static boolean |
DESecurityManager.checkAccess(Table table,
int mode,
ExecutingContext ec)
Tests if the current user is authorized to access the table |
Uses of Table in planetj.dataengine.security.http |
Methods in planetj.dataengine.security.http with parameters of type Table | |
java.lang.Boolean |
SignonRow.isAuthorized(Table table,
int mode,
ExecutingContext ec)
Tests if the specified operation gives the user authority to access the table |
Uses of Table in planetj.dataengine.theme |
Methods in planetj.dataengine.theme that return Table | |
Table |
ThemeManager.getThemeTable(java.lang.String metaDataAlias)
Gets the Theme Table Object. |
Uses of Table in planetj.fdmanager.magic |
Methods in planetj.fdmanager.magic that return Table | |
Table |
ViewFDsForTableRequest.getTable(HttpServletRequest pRequest)
|
Constructors in planetj.fdmanager.magic with parameters of type Table | |
EditFDRequest(java.lang.String pId,
HttpServletRequest pReq,
HttpServletResponse pRes,
Table pTable,
java.lang.String pFieldNameParam)
Deprecated. CreateAndEditFieldFDRequest constructor comment. |
Uses of Table in planetj.html |
Methods in planetj.html with parameters of type Table | |
static java.lang.StringBuffer |
HTMLTable.appendEditFDQuickLink(Table table,
java.lang.String fieldName,
java.lang.StringBuffer html,
HttpServletRequest request,
HttpServletResponse response)
Appends a link to navigate to the FDManager to edit a FD for a given column/field. |
java.lang.String |
FDHTMLTable.generate(Table pTable,
java.util.List pFieldNames,
java.util.List pSelectedFieldNames,
HttpServletRequest pRequest,
HttpServletResponse pResponse)
|
Uses of Table in planetj.magic |
Methods in planetj.magic that return Table | |
Table |
TableRequest.getTable(HttpServletRequest pRequest)
|
Table |
CopyRCToTableRequest.getTable(HttpServletRequest pRequest)
|
Table |
AddRowRequest.getTable()
Gets one of this MRs tables |
Methods in planetj.magic with parameters of type Table | |
void |
AddRowRequest.addTable(Table table)
Adds a table to this MRs tables |
void |
AddRowRequest.setTable(Table table)
Deprecated. Use addTable() or setTables() instead |
Constructors in planetj.magic with parameters of type Table | |
AddRowRequest(java.lang.String pId,
HttpServletRequest pReq,
HttpServletResponse pRes,
Table table,
java.lang.Class rowSubClass,
java.lang.String rowSessionId)
CancelRequest constructor comment. |
|
AddRowRequest(Table table,
java.lang.Class rowSubClass,
HttpServletRequest request,
HttpServletResponse response)
Creates a new AddRowRequest that will create a new row of the given type and for the given table and put the row into the session to allow editing and inserting of the new row. |
Uses of Table in planetj.wow.update |
Methods in planetj.wow.update that return Table | |
Table |
AlterTableUpdate.getTable()
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |