ArcGIS Pro 3.0 API Reference Guide
ArcGIS.Core.Data Namespace / MobileGeodatabaseConnectionPath Class
Members Example

In This Topic
    MobileGeodatabaseConnectionPath Class
    In This Topic
    Represents the physical path to a mobile geodatabase that ends with the .geodatabase extension.
    Syntax
    public sealed class MobileGeodatabaseConnectionPath : Connector 
    Public NotInheritable Class MobileGeodatabaseConnectionPath 
       Inherits Connector
    Example
    Creating a Mobile Geodatabase
    // Create a MobileGeodatabaseConnectionPath with the name of the mobile geodatabase you wish to create
    MobileGeodatabaseConnectionPath mobileGeodatabaseConnectionPath = 
      new MobileGeodatabaseConnectionPath(new Uri(@"C:\Path-To-Mobile-Geodatabase\YourName.geodatabase"));
    
    // Create and use the mobile geodatabase
    using (Geodatabase geodatabase = SchemaBuilder.CreateGeodatabase(mobileGeodatabaseConnectionPath))
    {
      // Create additional schema here
    }
    
    Deleting a Mobile Geodatabase
    // Create a MobileGeodatabaseConnectionPath with the name of the mobile geodatabase you wish to delete
    MobileGeodatabaseConnectionPath mobileGeodatabaseConnectionPath = 
      new MobileGeodatabaseConnectionPath(new Uri(@"C:\Path-To-Mobile-Geodatabase\YourName.geodatabase"));
    
    // Delete the mobile geodatabase
    SchemaBuilder.DeleteGeodatabase(mobileGeodatabaseConnectionPath);
    
    Inheritance Hierarchy

    System.Object
       ArcGIS.Core.Data.Connector
          ArcGIS.Core.Data.MobileGeodatabaseConnectionPath

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 8.1

    See Also