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


ISQLSyntax.QualifyTableName Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IS > ISQLSyntax Interface > ISQLSyntax.QualifyTableName Method
ArcGIS Developer Help

ISQLSyntax.QualifyTableName Method

Given a database, owner, and table name, return its fully qualified name.

[Visual Basic .NET]
Public Function QualifyTableName ( _
    ByVal dbName As String, _
    ByVal OwnerName As String, _
    ByVal TableName As String _
) As String
[C#]
public string QualifyTableName (
    string dbName,
    string OwnerName,
    string TableName
);
[C++]
HRESULT QualifyTableName(
  BSTR dbName,
  BSTR OwnerName,
  BSTR TableName
);
[C++]
Parameters
dbName [in]

dbName is a parameter of type BSTR OwnerName [in]
OwnerName is a parameter of type BSTR TableName [in]
TableName is a parameter of type BSTR

Product Availability

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

Remarks

Applications should use the QualifyTableName and QualifyColumnName methods to construct fully qualified dataset and column names.

See Also

ISQLSyntax Interface