VistaDB 6
VistaDB.DDA Namespace / IVistaDBTableSchema Interface / DropIndex Method
Index name


In This Topic
    DropIndex Method (IVistaDBTableSchema)
    In This Topic
    Drop existing index from the table schema.
    Syntax
    'Declaration
     
    
    Sub DropIndex( _
       ByVal name As System.String _
    ) 
    'Usage
     
    
    Dim instance As IVistaDBTableSchema
    Dim name As System.String
     
    instance.DropIndex(name)
    void DropIndex( 
       System.string name
    )

    Parameters

    name
    Index name
    Remarks
    Drop existing index from the table schema. The method doesn't do an actual delete operation but updates table schema in order to use this information with latest alter table functionality. To free the space allocated in the database file a PackDatabase operation must be performed.
    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