This document is archived and information here might be outdated. Recommended version. |
Given a table name and column name, returns its fully qualified name.
[Visual Basic .NET]
Public Function QualifyColumnName ( _
ByVal TableName As String, _
ByVal columnName As String _
) As String
[C#]
public string QualifyColumnName (
string TableName,
string columnName
);
[C++]
HRESULT QualifyColumnName(
BSTR TableName,
BSTR columnName
);
[C++] Parameters TableName [in]
TableName is a parameter of type BSTR columnName [in]
columnName is a parameter of type BSTR
Applications should use the QualifyTableName and QualifyColumnName methods to construct fully qualified dataset and column names.