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

CreateStoreHouse() public method

Creates the store house specified in the connection descriptor. If this data source doesn't use a store house, this method should be a no-op. If this data source DOES use store houses, but support for adding them is not implemented yet, this should throw a NotImplementedException. Store house typically corresponds to "database".
public CreateStoreHouse ( ) : void
return void
        public virtual void CreateStoreHouse()
        {
            throw new NotImplementedException();
        }