HOW TO

Access a FeatureClass in SDE with IWorkspaceName

Last Published: April 25, 2020

Summary

Note:
This article pertains to ArcGIS versions 8.x and 9.x. Later versions of ArcGIS may contain different functionality, as well as different names and locations for menus, commands and geoprocessing tools.

Below is a code sample showing how to access a FeatureClass residing in SDE using IFeatureClassName.

Note: 
Support for Visual Basic for Applications (VBA) for ArcMap and ArcCatalog ended with the ArcGIS 10.2.2 release, and Esri has not included VBA compatibility setups since version 10.5. See: ArcGIS Desktop and VBA Moving Forward

Procedure

  1. Start ArcMap.
  2. Create a new UIButtonControl: How To: Create a new UIButtonControl​
Note:
For more information on creating a UIControl, see the ArcGIS Desktop Help topic: 'Creating custom commands with VBA and UI Controls'
  1. Right-click the UIButtonControl and select View Source.
  2. Copy the following code into the UIButtonControl's click event.
''This is how to Use the IWorkspaceName interface to get access to an SDE
''WorkSpace and a dataset residing within it...
''Users should change the following variable**************
    ''This is the name of the FeatureClass...
    Dim StrFeatureClassName As String
    StrFeatureClassName = "sde.SDE.roads"
''****************************************************
    ''This is the connection information that is used to access SDE...
    Dim ppropset As IPropertySet2
    Set ppropset = New PropertySet
    
    ppropset.SetProperty "SERVER", "Brazil"
    ppropset.SetProperty "INSTANCE", "5151"
    ppropset.SetProperty "USER", "sde"
    ppropset.SetProperty "PASSWORD", "sde"
    ppropset.SetProperty "VERSION", "SDE.DEFAULT"
    
    Dim pWorkSpaceName2 As IWorkspaceName2
    Set pWorkSpaceName2 = New WorkspaceName
     
    pWorkSpaceName2.ConnectionProperties = ppropset
    ''Notice this is a String. The ArcObjects help should have a listing of the
    ''other types (featureclass, tables, etc etc)
    pWorkSpaceName2.WorkspaceFactoryProgID = "esriCore.SdeWorkspaceFactory"
                 
    Dim pname As IName
    Set pname = pWorkSpaceName2
    
    Dim pFeatureWorkspace As IFeatureWorkspace
    Set pFeatureWorkspace = pname.Open
    
    Dim pfeatureclass As IFeatureClass
    '''Look at the IFeatureWorkSpace as you can open Tables, DataSets, etc etc...
    '''Below we use IFeatureWorkSpace::OpenFeatureClass to get a FeatureClass...
    Set pfeatureclass = pFeatureWorkspace.OpenFeatureClass(StrFeatureClassName)
    
    ''Proving you have a featureclass...
    MsgBox pfeatureclass.FeatureCount(Nothing)
    

Article ID:000005904

Software:
  • ArcMap 8 x
  • ArcMap 9 x
  • Legacy Products

Get help from ArcGIS experts

Contact technical support

Download the Esri Support App

Go to download options

Discover more on this topic