Uses of Class
ejava.examples.daoex.bo.Book
-
Packages that use Book Package Description ejava.examples.daoex.bo ejava.examples.daoex.dao -
-
Uses of Book in ejava.examples.daoex.bo
Fields in ejava.examples.daoex.bo with type parameters of type Book Modifier and Type Field Description private List<Book>
Author. books
Methods in ejava.examples.daoex.bo that return types with arguments of type Book Modifier and Type Method Description List<Book>
Author. getBooks()
Method parameters in ejava.examples.daoex.bo with type arguments of type Book Modifier and Type Method Description void
Author. setBooks(List<Book> books)
-
Uses of Book in ejava.examples.daoex.dao
Methods in ejava.examples.daoex.dao that return Book Modifier and Type Method Description Book
BookDAO. create(Book book)
Add the book to the database.Book
JDBCBookDAOImpl. create(Book book)
Book
JPABookDAOImpl. create(Book book)
Book
JPANativeSQLBookDAO. create(Book book)
Book
BookDAO. get(long id)
Gets a book from the database by its ID.Book
JDBCBookDAOImpl. get(long id)
Book
JPABookDAOImpl. get(long id)
Book
JPANativeSQLBookDAO. get(long id)
Book
BookDAO. update(Book book)
Updates the book in the database with the values in this object.Book
JDBCBookDAOImpl. update(Book book)
Book
JPABookDAOImpl. update(Book book)
Book
JPANativeSQLBookDAO. update(Book book)
Methods in ejava.examples.daoex.dao that return types with arguments of type Book Modifier and Type Method Description List<Book>
BookDAO. findAll(int start, int count)
Returns a collection of books, starting at the index provided and limiting the collection to the count value.List<Book>
JDBCBookDAOImpl. findAll(int start, int count)
List<Book>
JPABookDAOImpl. findAll(int offset, int limit)
List<Book>
JPANativeSQLBookDAO. findAll(int start, int count)
Methods in ejava.examples.daoex.dao with parameters of type Book Modifier and Type Method Description Book
BookDAO. create(Book book)
Add the book to the database.Book
JDBCBookDAOImpl. create(Book book)
Book
JPABookDAOImpl. create(Book book)
Book
JPANativeSQLBookDAO. create(Book book)
private PreparedStatement
JDBCBookDAOImpl. getInsertPreparedStatement(Connection c, Book book)
void
BookDAO. remove(Book book)
Removes a book from the database.void
JDBCBookDAOImpl. remove(Book book)
void
JPABookDAOImpl. remove(Book book)
void
JPANativeSQLBookDAO. remove(Book book)
Book
BookDAO. update(Book book)
Updates the book in the database with the values in this object.Book
JDBCBookDAOImpl. update(Book book)
Book
JPABookDAOImpl. update(Book book)
Book
JPANativeSQLBookDAO. update(Book book)
-