Drop() public method

Drops the database.
public Drop ( LightningTransaction transaction ) : void
transaction LightningTransaction
return void
 /// <summary>
 /// Drops the database.
 /// </summary>
 public void DropDatabase(LightningDatabase database)
 {
     database.Drop(this);
 }
Example #2
0
 /// <summary>
 /// Drops the database.
 /// </summary>
 public void DropDatabase(LightningDatabase database)
 {
     database.Drop(this);
 }
 /// <summary>
 /// Drops the database.
 /// </summary>
 public MDBResultCode DropDatabase(LightningDatabase database)
 {
     return(database.Drop(this));
 }