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.QualifyTableName Method (ArcObjects .NET 10.5 SDK) |
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
Applications should use the QualifyTableName and QualifyColumnName methods to construct fully qualified dataset and column names.