private void InsertBugInDB(Bug bug, int issueID)
 {
     new SQLiteCommand(SQLFixedQueries.InsertBug(issueID,
                                                 bug.VersionFound,
                                                 bug.VersionFixed,
                                                 bug.DetailedDescription,
                                                 bug.StepsToReproduce,
                                                 bug.Workaround,
                                                 bug.Fix),
                       conn).ExecuteNonQuery();
 }