|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IRelQueryTableInfo
Provides access to members that provide information about joins.
The IRelQueryTableInfo interface provides properties and methods that return information about a RelQueryTable after it has been created.
Method Summary | |
---|---|
ITable |
getBaseTableOfField(String column)
Returns the base table for a particular field. |
int |
getJoinType()
Type of table join. |
IQueryDef |
getQueryDef()
QueryDef used to create the join. |
boolean |
isHasDirectAccessLookup()
Indicates if direct access lookup is used by a RelQueryTable to match records between the source and destination tables. |
Method Detail |
---|
int getJoinType() throws IOException, AutomationException
The JoinType can be either esriLeftInnerJoin or esriLeftOuterJoin. A left outer join ensures that all records in the source are returned. A left inner join will only return rows that have matching key field values. The diagram below illustrates the difference.
When using ArcMap's user interface to join data, you can choose between either type of join. Clicking the advanced button on the join data dialog box will display a dialog box that allows you to choose the join type. Here, the "Keep all records" option refers to a left outer join when the "Keep only matching records" option specifies a left inner join.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IQueryDef getQueryDef() throws IOException, AutomationException
The QueryDef property returns the query that is used to retrieve the joined data when processing is done on the server. If the join is processed on the client as apposed to a server, the QueryDef property returns a null value.
If all tables involved are stored on the same ArcSDE, Personal or File Geodatabase, the processing can be performed by the server, which is normally faster. The JoinType must also be esriLeftInnerJoin in order for processing to occur on the server. In any other case, processing occurs on the client.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.ITable getBaseTableOfField(String column) throws IOException, AutomationException
The GetBaseTableofField method will return the underlying Table object that is associated with a field in a RelQueryTable. To ensure that the column will be found, provide a fully qualified field name when executing this method.
column
- The column (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.boolean isHasDirectAccessLookup() throws IOException, AutomationException
The HasDirectAccessLookup property returns true if the destination table supports the IRandomAccessCursor interface and the source table has an ObjectID field. This interface allows for faster data access and therefore better join performance. Tables from shapefile and ArcInfo workspace factories support this interface.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |