This document is archived and information here might be outdated.  Recommended version.


IQueryDef.Tables Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IQ > IQueryDef Interface > IQueryDef.Tables Property
ArcGIS Developer Help

IQueryDef.Tables Property

The comma delimited list of table names for the query.

[Visual Basic .NET]
Public Property Tables As String
[C#]
public string Tables {get; set;}
[C++]
HRESULT get_Tables(
  System.String* Tables
);
[C++]
HRESULT put_Tables(
  BSTR Tables
);
[C++]
Parameters
Tables [out, retval]

Tables is a parameter of type BSTR* Tables [in]
Tables is a parameter of type BSTR

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Get or put a comma delimited string of tables for use in the query from the Tables data member.

Remarks

Returns a string containing the name of a single table (or a list of table names when used in a join). When used with an ArcSDE datasource, the table name will be prefixed with the owner name (owner.mytable) if the table is not owned by the current workspace.

See Also

IQueryDef Interface