When working with ArcFM system tables in an SDE database, the table names must be qualified with the schema name to which the tables belong. Since the ArcFM system tables must be owned by the SDE administrative database user, this method could be used to return a table name that is prepended by the SDE administrative database schema name.
'Declaration
Function GetFullTableName( _
ByVal As String _
) As String
'Usage
Dim instance As IMMLoginObject
Dim bstrBaseTableName As String
Dim value As String
value = instance.GetFullTableName(bstrBaseTableName)
Parameters
- bstrBaseTableName
- String
Return Value
Returns a table name as a string value.
The following code sample demonstrates how the IMMLoginObject::GetFullTableName method may be implemented.
Visual Basic |
Copy Code |
Private Function IMMLoginObject_GetFullTableName(ByVal bstrBaseTableName As String) As String
IMMLoginObject_GetFullTableName = _
m_pDefaultLogin.GetFullTableName(bstrBaseTableName)
End Function |
|
Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)
Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.