Ejemplo n.º 1
0
 public bool RemoveData(ISqlData data)
 {
     try
     {
         SQLiteCommand command = new SQLiteCommand(data.GetRemoveCommand(), m_dbConnection);
         command.ExecuteNonQuery();
     }
     catch (Exception e)
     {
         Trace.WriteLine(e);
         return(false);
     }
     return(true);
 }