}
/* Private Methods goes below : **/
private Author setterForAuthor(ResultSet rs) throws SQLException {
Author author = new Author();
author.setId(rs.getInt("id"));
author.setFull_name(rs.getString("full_name"));
author.setLocation(rs.getString("location"));
author.setAge(rs.getInt("age"));
author.setDetails(rs.getString("details"));
return author;
}