Hi friends,
Their is a advance version of java that is hibernate can you tell me what it is and how can I use it ,the purpose of using this ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Oct 2, 2012, 11:59 PM
Hibernate: - It is a framework to implement object relational mapping. It provides facility to persist state of object. Whenever a program creates object of a class then the state of object can be available till the program executes. It helps to keep state of an object after exist of the creator program. ORM is a mechanism to store state of an object into relational storage (Dbms). If the program uses jdbc then the program must know name of the table and columns to store values of variables through sql commands. The user of hibernate need not to know table and column name .The user of hibernate uses only object of the classes. Each record available in the table becomes an object in the program.
Refer
http://www.c-sharpcorner.com/uploadfile/satyapriyanayak/working-with-hibernate-display-insert-update-and-delete-in-java/
Thanks