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 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
)
function GetFullTableName(
: System.String
): System.String;
function GetFullTableName(
: System.String
) : System.String;
System.string* GetFullTableName(
System.string*
)
System.String^ GetFullTableName(
System.String^
)
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 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