public bool UpdateData(ISqlData data) { try { SQLiteCommand command = new SQLiteCommand(data.GetUpdateDataCommand(), m_dbConnection); command.ExecuteNonQuery(); } catch (Exception e) { Trace.WriteLine(e); return(false); } return(true); }