I have a java method like
public List<Employee> getEmployeeById(Long id){
final String query = "SELECT * FROM EMPLOYEE WHERE ID=?";
preparedStatement.setLong(1,id);
// from the result set prepare employee object
// close result set
// close prepared stmt
// close connection.
}
Now how do i change the method, so that my where clause can be 'where name=?' or 'where dept=?' or some other criteria.
i.e. 1. I need not to parse resultset to employee obj as i am using simple jdbc. 2. no need of writing same boiler plate code (i.e. closing result set, preparedstmt, conn)
I want to use simple JDBC.
Do I need to write different methods for this or is there any other way.
Please help me in solving this.