ArcGIS Pro 2.9 API Reference Guide
QualifyColumnName Method

ArcGIS.Core.Data Namespace > SQLSyntax Class : QualifyColumnName Method
The name of the table. It may be null or an empty string.
The name of the column. It must not be null or an empty string.
Given a table name and column name, returns its fully qualified name. This method must be called on the MCT. Use QueuedTask.Run.
Syntax
public string QualifyColumnName( 
   string tableName,
   string columnName
)
Public Function QualifyColumnName( _
   ByVal tableName As String, _
   ByVal columnName As String _
) As String

Parameters

tableName
The name of the table. It may be null or an empty string.
columnName
The name of the column. It must not be null or an empty string.

Return Value

The fully qualified column name.
Exceptions
ExceptionDescription
columnName is null or an empty string.
A geodatabase-related exception has occurred.
Remarks
Applications should use the QualifyTableName and QualifyColumnName methods to construct fully qualified dataset and column names.
Requirements

Target Platforms: Windows 11, Windows 10, Windows 8.1

See Also

Reference

SQLSyntax Class
SQLSyntax Members