this is one assignment
There will be a discussion in class about this assignment
What to do.
Create a simple database with three fields : ID, LastName,
FirstName all as Strings. You should define a class called
StudentRecord or DataBaseRecord
with three private String elements (the three fields), along with
the appropriate methods. Here's what mine looked like:
public class StudentRecord{
private String fname;
private String lname;
private String ID;
DataBaseRecord(String f,String l,String
i)
{...