public bool DropDatabase( ) { try { if (DatabaseFile.Exists) { DatabaseFile.Delete( ); return(true); } return(false); } catch (Exception) { return(false); } }