ArcFM Solution Developer Guide
GetFullTableName Method (IMMLoginObject)


Version: 10.2.1b and 10.2.1b SP1

Resource Center Home

String
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.
Syntax
'Declaration
 
Function GetFullTableName( _
   ByVal bstrBaseTableName As String _
) As String
'Usage
 
Dim instance As IMMLoginObject
Dim bstrBaseTableName As String
Dim value As String
 
value = instance.GetFullTableName(bstrBaseTableName)
string GetFullTableName( 
   string bstrBaseTableName
)

Parameters

bstrBaseTableName
String

Return Value

Returns a table name as a string value.

Example
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
Requirements

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.

See Also

Reference

IMMLoginObject Interface
IMMLoginObject Members

 

 


Send Comment