ArcFM Solution Developer Guide
GetFullTableName Method (IMMLoginObject)






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 System.String _
) As System.String
'Usage
 
Dim instance As IMMLoginObject
Dim bstrBaseTableName As System.String
Dim value As System.String
 
value = instance.GetFullTableName(bstrBaseTableName)
System.string GetFullTableName( 
   System.string bstrBaseTableName
)
function GetFullTableName( 
    bstrBaseTableName: System.String
): System.String; 
function GetFullTableName( 
   bstrBaseTableName : System.String
) : System.String;
System.string* GetFullTableName( 
   System.string* bstrBaseTableName
) 
System.String^ GetFullTableName( 
   System.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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

IMMLoginObject Interface
IMMLoginObject Members

Send Feedback