org.eclipse.datatools.modelbase.sql.tables
Interface DerivedTable

All Superinterfaces:
SQLObject, Table
All Known Subinterfaces:
ViewTable
All Known Implementing Classes:
DerivedTableImpl, ViewTableImpl

public interface DerivedTable
extends Table

A representation of the model object 'Derived Table'. 4.14 Tables A table is a collection of rows having one or more columns. [...] A table is either a base table, a derived table, or a transient table. A base table is either a persistent base table, a global temporary table, a created local temporary table, or a declared local temporary table. A derived table is a table derived directly or indirectly from one or more other tables by the evaluation of a whose result has an element type that is a row type. The values of a derived table are derived from the values of the underlying tables when the is evaluated. A derived table descriptor describes a derived table. In addition to the components of every table descriptor, a derived table descriptor includes: - The that defines how the table is to be derived. - An indication of whether the derived table is updatable or not.

The following features are supported:

See Also:
SQLTablesPackage.getDerivedTable()

Method Summary
 QueryExpression getQueryExpression()
          Returns the value of the 'Query Expression' containment reference.
 void setQueryExpression(QueryExpression value)
          Sets the value of the 'Query Expression' containment reference.
 
Methods inherited from interface org.eclipse.datatools.modelbase.sql.tables.Table
getColumns, getIndex, getSchema, getSelfRefColumnGeneration, getSubtables, getSupertable, getTriggers, getUdt, isInsertable, isUpdatable, setSchema, setSelfRefColumnGeneration, setSupertable, setUdt
 
Methods inherited from interface org.eclipse.datatools.modelbase.sql.schema.SQLObject
addEAnnotation, addEAnnotationDetail, getDependencies, getDescription, getEAnnotation, getEAnnotationDetail, getLabel, removeEAnnotationDetail, setAnnotationDetail, setDescription, setLabel
 

Method Detail

getQueryExpression

public QueryExpression getQueryExpression()
Returns the value of the 'Query Expression' containment reference.

If the meaning of the 'Query Expression' containment reference isn't clear, there really should be more of a description here...

Returns:
the value of the 'Query Expression' containment reference.
See Also:
setQueryExpression(QueryExpression), SQLTablesPackage.getDerivedTable_QueryExpression()

setQueryExpression

public void setQueryExpression(QueryExpression value)
Sets the value of the 'Query Expression' containment reference.

Parameters:
value - the new value of the 'Query Expression' containment reference.
See Also:
getQueryExpression()


Copyright © 2006 Actuate, IBM Corporation, Sybase, Inc. and others. All rights reserved.