|  | This document is archived and information here might be outdated. Recommended version. | 
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
);
[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
Applications should use the QualifyTableName and QualifyColumnName methods to construct fully qualified dataset and column names.