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); }