Hi, I'm newbie here.
I am doing a research project dealing with Java and database. Suppose I have Table (in mysql) like this:
ID Name Pt Dd Status
1 J1 10 3 null
2 j2 30 4 null
I want to store the values in database using Java object so it can be manipulated. What do you think of the data structure suitable for this:
A-Vector of class
B-Array of class
or what
Suppose the class is defined like this:
public class job {
String ID;
String name;
float pt;
int dd;
String status;
};
Please, I need help for my research project. Thx all.