|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Table in planetj.database |
Methods in planetj.database that return Table | |
static Table |
Table.createTable(String systemAlias,
String libName,
String tblName)
Creates and returns a new Table using the given system alias, library name, and table name. |
static Table |
Table.createTable(String pSystemAlias,
String pLibraryName,
String pTableName,
Class pTableClass)
Creates and returns a new Table using the given system Alias, library name, and table name. |
static Table |
Table.getTable(String pSystemAlias,
String pLibraryName,
String pTableName)
Get the Table for the given table name using the specified library name and system url. |
static Table |
Table.getTable(String pSystemAlias,
String pLibraryName,
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(String pTableName)
Returns the Table in this Library with the given name. |
Table |
Library.createTable(String pTableName,
Class pTableClass)
Returns the Table in this Library with the given name. |
Table |
Library.getTable(String pTableName)
Returns the Table in this Library with the given name. |
Table |
Library.getTable(String pTableName,
boolean pCreate)
Returns the Table in this Library with the given name. |
Table |
Library.removeTable(String pTableName)
Removes the Table with the given name. |
Table |
Field.getTable()
Returns the Table to which this Field belongs. |
Methods in planetj.database with parameters of type Table | |
static StringBuffer |
Table.appendFullyQualifiedName(Table t,
StringBuffer sb)
Appends the library qualified name of the table, such as "mylibrary.mytable" |
String |
Table.getCreationSQL(Table table)
Gets the "CREATE TABLE" SQL statement that can be used to duplicate this table on another system. |
String |
Table.getCreationSQL(Table table,
List fieldDescriptors)
Gets the "CREATE TABLE" SQL statement that can be used to duplicate this table on another system. |
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 StringBuffer |
SQLGenerator.appendTableName(Table table,
StringBuffer sb)
Appends the fully qualified table name to the StringBuffer. |
static String |
SQLGenerator.generateCreateTableStatementFromFDs(Table pTable)
Generates a CREATE TABLE Statement that constructs a table based on the specified Table |
static String |
SQLGenerator.generateCreateTableStatementFromRowCollection(Table pTable,
RowCollection rc)
Generates a CREATE TABLE Statement that constructs a table based on the specified Table |
static String |
SQLGenerator.generateSelectAssociationStatement(Table pTable,
String pSelectFields,
Map pFldMap)
Generates a SQL select statement for retreiving Row associations Examples: |
static String |
SQLGenerator.generateSelectAssociationStatementForRowCollection(Table pTable,
String pSelectFields,
Map pTargetFDSandSourceFlds)
Generates a SQL select statement for retreiving RowCollection associations Examples: |
static String |
SQLGenerator.generateSelectOperationStatement(Table pTable,
String pSelectOperation,
String pColumnName,
String pWhereClause)
Generates a SQL select statement for the givin pSelectOperation with an optional pColumnName Examples: COUNT -> generateSelectOperationStatement(, SQLGenerator.COUNT, null, |
static String |
SQLGenerator.generateSelectSQL(Table tbl,
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 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. |
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,
Class rowSubClass)
Create and return a new Row of the given Class type and also set its Table. |
static Row |
Row.create(Table table,
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,
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,
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,
Class rowSubClass,
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,
Class rowSubClass,
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,
List fieldNames,
boolean initialize)
Create and return a new Row for the given table and field names. |
static Row |
Row.create(Table table,
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,
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. |
FieldDescriptorRow |
Row.getFieldDescriptor(String pFieldName,
Table pTable)
Return the IFieldDescriptor for the Field with the specified name. |
static PhysicalTable |
PhysicalTable.getPhysicalTable(Table pTable)
Gets the PhysicalTable object which corresponds to the given table |
void |
Field.setTable(Table pTable)
Sets this Fields Table to which this Field belongs. |
static void |
DataEngine.copyRowCollectionToTable(Connection connection,
Table copyToTable,
RowCollection rc)
This method copies a row collection to the specified table. |
static void |
DataEngine.copyRowCollectionToTable(Table pCopyToTable,
RowCollection pRC)
This method copies a row collection to the specified table. |
static boolean |
DataEngine.createTable(Connection pConnection,
Table pTable,
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,
String pCreateTableSQL)
Creates a database table using the specified information. |
static boolean |
DataEngine.doesTableExist(Connection pConnection,
Table pTable)
Returns whether or not a table exists in a database using the specified information. |
static boolean |
DataEngine.doesTableExist(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(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 BigDecimal |
DataEngine.selectColumnSum(Table pTable,
String pColumnName,
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 Integer |
DataEngine.selectRowCount(Table pTable,
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,
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(String pSystemAlias)
|
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(String pFDSystemAlias)
Returns the Field data file Table object. |
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 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(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(List pFDs,
Table pTable)
Removes all FieldDescriptors for all systems. |
static void |
FieldDescriptorManager.addFDs(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(Connection pConnection,
Table pTable,
String pFieldName)
Create a field descriptor for the specified field name in the table from the given connection. |
static FieldDescriptorRow |
FieldDescriptorManager.createFDFromDBMetaData(Table pTable,
String pFieldName)
Create a field descriptor for the specified field name in the table. |
static FieldDescriptorRow |
FieldDescriptorManager.createFDFromRSMetaData(int pColumnIndex,
ResultSetMetaData pRSMetaData,
Table pTable)
Creates and returns a FieldDescriptor using the given ResultSetMetaData and column index. |
static RowCollection |
FieldDescriptorManager.createFDsFromDBMetaData(Connection pConnection,
Table pTable)
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.getAssociationsForTable(Table pTable)
|
static RowCollection |
FieldDescriptorManager.getFDsFromFile(Table pTable,
int pNumPerPage)
|
static RowCollection |
FieldDescriptorManager.getFDsFromFile(Table pTable,
int pNumPerPage,
List orderByColumns)
|
static FieldDescriptorRow |
FieldDescriptorManager.getFieldDescriptor(String pFieldName,
Table pTable)
Returns the FieldDescriptor for the given Field name. |
static FieldDescriptorRow |
FieldDescriptorManager.getFieldDescriptor(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. |
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(String pSQL,
String pSystemAlias)
Gets the table that will be altered by this SQL statement. |
Table |
ColumnToken.getTable(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(javax.servlet.http.HttpServletRequest pRequest)
Gets the default Table from the session. |
static Table |
SessionManager.getTable(javax.servlet.http.HttpServletRequest pRequest,
String pTableKey)
Gets the Table from the session identified by the given key. |
Table |
AbstractTableManager.getTable(String metaDataAlias)
Gets the Table object this manager manages. |
Methods in planetj.dataengine with parameters of type Table | |
static String |
RowClassGenerator.generateRowClass(Table pTable,
RowClassProperties pProps)
Generates a subclass of the Row class. |
static 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 | |
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,
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,
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(String system)
|
static Table |
DEUser.getTable(String system)
|
static Table |
DEGroup2Authorization.getTable(String system)
|
Uses of Table in planetj.dataengine.test |
Constructors in planetj.dataengine.test with parameters of type Table | |
WKTestRowCollection(Table table)
WKTestRowCollection constructor comment. |
|
WKTestRowCollection(Table table,
List fieldNames)
WKTestRowCollection constructor comment. |
Uses of Table in planetj.dataengine.theme |
Methods in planetj.dataengine.theme that return Table | |
Table |
ThemeManager.getThemeTable(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(javax.servlet.http.HttpServletRequest pRequest)
|
Constructors in planetj.fdmanager.magic with parameters of type Table | |
EditFDRequest(String pId,
javax.servlet.http.HttpServletRequest pReq,
javax.servlet.http.HttpServletResponse pRes,
Table pTable,
String pFieldNameParam)
Deprecated. CreateAndEditFieldFDRequest constructor comment. |
Uses of Table in planetj.html |
Methods in planetj.html with parameters of type Table | |
String |
FDHTMLTable.generate(Table pTable,
List pFieldNames,
List pSelectedFieldNames,
javax.servlet.http.HttpServletRequest pRequest,
javax.servlet.http.HttpServletResponse pResponse)
|
Uses of Table in planetj.magic |
Methods in planetj.magic that return Table | |
Table |
TableRequest.getTable(javax.servlet.http.HttpServletRequest pRequest)
|
Table |
CopyRCToTableRequest.getTable(javax.servlet.http.HttpServletRequest pRequest)
|
Table |
AddRowRequest.getTable()
|
Methods in planetj.magic with parameters of type Table | |
void |
AddRowRequest.setTable(Table table)
execute method comment. |
Constructors in planetj.magic with parameters of type Table | |
AddRowRequest(String pId,
javax.servlet.http.HttpServletRequest pReq,
javax.servlet.http.HttpServletResponse pRes,
Table table,
Class rowSubClass,
String rowSessionId)
CancelRequest constructor comment. |
|
AddRowRequest(Table table,
Class rowSubClass,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.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. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |