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,
BSTR* FullName
);
[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 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.