You'd like to lookup the DAO (Data Access Object) pattern.
First, create a Javabean class which represents a single book (also called an entity).
public class Book {
private Long id;
private String title;
private String author;
private Date date;
// Add/generate c'tor/getter/setter/hashcode/equals/tostring boilerplate.
}
Then, create a DAO class which does the desired operations on the books.
public class BookDAO {
public Book find(Long id) throws SQLException {
// ...
}
public List<Book> search(Book example) throws SQLException {
// ...
}
public List<Book> list() throws SQLException {
// ...
}
public List<Book> listByDate(Date before, Date after) throws SQLException {
// ...
}
public void save(Book book) throws SQLException {
// ...
}
public void delete(Book book) throws SQLException {
// ...
}
}
In this class, you can write all the necessary JDBC boilerplate.
Finally, you just end up using it the following way:
Book newBook = new Book("Pro JPA 2", "Merrick Schincariol");
bookDAO.save(newBook);
// ...
Book book = bookDAO.find(1L);
// ...
List<Book> allBooks = bookDAO.list();
// ...
List<Book> matchingBooks = bookDAO.search(new Book(null, "Schincariol"));
// ...
You can find a detailed article with basic kickoff examples here.
To get a step further, you may find JPA (Java Persistence API) interesting. It adds an extra layer over JDBC so that you can interact with the DB on a more object oriented manner without the need to write all the JDBC boilerplate. True, it's part of Java EE, but you can also use it independently. See also this tutorial on using JPA in desktop/client applications.