Returns the base table for a particular field.
[Visual Basic 6.0] Function GetBaseTableOfField(
ByVal dbColumn As String _
) As ITable
[Visual Basic .NET] Public Function GetBaseTableOfField ( _ ByVal dbColumn As String _ ) As ITable
[C#] public ITable GetBaseTableOfField ( string dbColumn );
[Java] public ITable getBaseTableOfField ( String dbColumn ) throws IOException, AutomationException
[C++] HRESULT GetBaseTableOfField( BSTR dbColumn, ITable** ppTable );
Parameters
dbColumn [in]
dbColumn is a parameter of type BSTR
ppTable [out, retval]
ppTable is a parameter of type ITable
The GetBaseTableofField method will return the underlying Table object that is associated with a field in a RelQueryTable. To ensure that the column will be found, provide a fully qualified field name when executing this method.