Ejemplo n.º 1
0
 public bool DropDatabase( )
 {
     try {
         if (DatabaseFile.Exists)
         {
             DatabaseFile.Delete( );
             return(true);
         }
         return(false);
     } catch (Exception) {
         return(false);
     }
 }