Azavea.Open.DAO.SQL.SqlDaDdlLayer.DeleteIndex C# (CSharp) Method

DeleteIndex() public method

Removes an index on the data for slower queries (but usually faster inserts/updates/deletes). Some data sources may not support indexes (such as CSV files), in which case this method should be a no-op. If the data source supports indexes, but support for deleting them is not yet implemented, this should throw a NotImplementedException. If there is no index with the given name, this should be a no-op.
public DeleteIndex ( string name, ClassMapping mapping ) : void
name string Name of the index to delete.
mapping ClassMapping ClassMapping for the data that was being indexed.
return void
        public virtual void DeleteIndex(string name, ClassMapping mapping)
        {
            throw new NotImplementedException();
        }