Given a database, owner, and table name, return its fully qualified name.
[Visual Basic 6.0] Function QualifyTableName(
ByVal dbName As String, _
ByVal ownerName As String, _
ByVal TableName As String _
) As String
[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 );
[Java] public String qualifyTableName ( String dbName, String ownerName, String TableName ) throws IOException, AutomationException
[C++]
HRESULT QualifyTableName(
BSTR dbName,
BSTR ownerName,
BSTR TableName,
BSTR* FullName
);
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.