Reputation: 2967
Hi. I am writing a standalone java app, and I want to access a database for persistance, but I couldn't find a good tutorial on what to use, and, the current best/fastest way to do this.
Can anyone point me in the right direction, please?
Upvotes: 1
Views: 587
Reputation: 6054
I believe it's good idea to use some sort of persistent framework like Hibernate in order to do access database for persistence. This would be much faster and more clean than using plain JDBC and it would be easy to maintain.
this is one simple tutorial,
http://www.skill-guru.com/blog/2009/08/05/first-hibernate-tutorial-%E2%80%93get-hands-on-experience/
http://www.skill-guru.com/blog/2009/10/06/hibernate-tutorial-part-ii/
Upvotes: 0
Reputation: 15333
The best and simple way to for accessing database is JDBC. But for more complex appliactions you can use Hibernate.
Upvotes: 0