I need to create a method that selects all data from a single table database titled Accounts - as you see my effort below is only partially complete as I'm unsure how to proceed with the method (I'm new to Java), any suggestions re. what I need to do to make it a complete, standalone method please?
String select = "Select * from Accounts";
results = statement.executeQuery(select);
}
catch(SQLException e){
System.out.println("Cannot execute query");
e.printStackTrace();
System.exit(1);
}
try{
while (results.next()){
System.out.println("Name: " + results.getInt(1));
System.out.println("Address: " + results.getString(2) + " " +
results.getString(3));
System.out.println("Salary: " + results.getString(4));
System.out.println("Grade: " + results.getString(5));
System.out.println("Year: " + results.getInt(6));
System.out.println("Tax Rate: " + results.getDouble(7));
System.out.println();
}
}
catch(SQLException e){
System.out.println("Error retrieving data");
e.printStackTrace();
System.exit(1);
}