Personal project in Java

Posted by Chuck on Stack Overflow See other posts from Stack Overflow or by Chuck
Published on 2010-12-26T18:47:26Z Indexed on 2010/12/26 18:53 UTC
Read the original article Hit count: 400

Filed under:
|
|
|

My first project in java is going to be a program (eventually I have to create a GUI interface but for now CLI would do) to keep track of my books (something similar to what libraries have only a simpler). I need to be able to insert, update, remove, show all books, update, search(by name or author or date).

For the design I was thinking one main class Library which will have all of the above as methods that connect to the db and retrieve the data.

Is this approach ok? I realize it's simple but it's my first real project and I would appreciate a little feedback.

Also, is it too soon to consider reading up on design patterns and database design ?

© Stack Overflow or respective owner

Related posts about java

Related posts about oop