Пример #1
0
 private void UpdateBugInDB(Bug bug)
 {
     new SQLiteCommand(SQLFixedQueries.UpdateBug(bug.ID,
                                                 bug.VersionFound,
                                                 bug.VersionFixed,
                                                 bug.DetailedDescription,
                                                 bug.StepsToReproduce,
                                                 bug.Workaround,
                                                 bug.Fix),
                       conn).ExecuteNonQuery();
 }