I'm setting up an application to keep track of scores of an archery shoot. Each shoot consists of 60 arrows ranging from 0-10. What would be the best way of setting up the class to store every arrows score, to then be written into an SQLite database?
I could set up a variable for every single arrow but this seems inefficient. What is the better way of doing this?
public class Portsmouth {
private int id;
Date date;
private int arrow1;
private int arrow2;
private int arrow3;
...
private int arrow60;
}