Given a table name and column name, returns its fully qualified name.
[Visual Basic .NET] Public Function QualifyColumnName ( _ ByVal TableName As String, _ ByVal columnName As String _ ) As String
[C#] public string QualifyColumnName ( string TableName, string columnName );
[C++]
HRESULT QualifyColumnName(
BSTR TableName,
BSTR columnName,
BSTR* FullName
);
[C++]Parameters
TableName [in] TableName is a parameter of type BSTR columnName [in] columnName is a parameter of type BSTR FullName [out, retval] FullName 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.