ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Data Namespace / SQLSyntax Class / QualifyTableName Method
The name of the database. It may be null or an empty string.
The name of the owner. It may be null or an empty string.
The name of the table. It must not be null or an empty string.

In This Topic
    QualifyTableName Method
    In This Topic
    Given a database name, owner name and table name, returns its fully qualified name. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public string QualifyTableName( 
       string databaseName,
       string ownerName,
       string tableName
    )
    Public Function QualifyTableName( _
       ByVal databaseName As String, _
       ByVal ownerName As String, _
       ByVal tableName As String _
    ) As String

    Parameters

    databaseName
    The name of the database. It may be null or an empty string.
    ownerName
    The name of the owner. It may be null or an empty string.
    tableName
    The name of the table. It must not be null or an empty string.

    Return Value

    The fully qualified table name.
    Exceptions
    ExceptionDescription
    tableName 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

    ArcGIS Pro version: 3 or higher.
    See Also