This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IS > ISQLSyntax Interface > ISQLSyntax.QualifyColumnName Method (ArcObjects .NET 10.5 SDK) |
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
Applications should use the QualifyTableName and QualifyColumnName methods to construct fully qualified dataset and column names.