what is hibernate ?

G

gk

hi,
what is hibernate ?

its called O-R mapping ?


is it an API ?

its a Software/tool ?

is it Software which has Database in it ? does it comes with a DB ?


can anybody please tell me in the simplest way whats this hibernate
means ?
 
F

Frank Seidinger

gk said:
its called O-R mapping ?
Yes.

is it an API ?
Yes.

its a Software/tool ?
Yes.

is it Software which has Database in it ? does it comes with a DB ?
No.

can anybody please tell me in the simplest way whats this hibernate
means ?

Maybe you best can find out yourself at:

http://www.hibernate.org/
 
O

Oliver Wong

gk said:
hi,
what is hibernate ?

its called O-R mapping ?

O-R mapping stands for "Object-Relational mapping". Java is Object Oriented,
and MySQL (for example) is Relational. So an O-R mapping creates a mapping
(a one-to-one correspondence) between an class in an object oriented
language and a table in a relational database.
is it an API ?

its a Software/tool ?

is it Software which has Database in it ? does it comes with a DB ?

can anybody please tell me in the simplest way whats this hibernate
means ?

It's basically so that you can persist (save) your objects in a
database, and then perform queries to load the objects back out of the DB.
You download a JAR, add it to your project, and it exposes an API which
takes care of saving your objects to the DB at the appropriate time. It
doesn't come with a database itself; you'll have to install one seperately,
and then configure Hibernate to connect to the DB.

- Oliver
 
G

gk

Thanks for the nice explanation.
this helped.

Oliver said:
O-R mapping stands for "Object-Relational mapping". Java is Object Oriented,
and MySQL (for example) is Relational. So an O-R mapping creates a mapping
(a one-to-one correspondence) between an class in an object oriented
language and a table in a relational database.


It's basically so that you can persist (save) your objects in a
database, and then perform queries to load the objects back out of the DB.
You download a JAR, add it to your project, and it exposes an API which
takes care of saving your objects to the DB at the appropriate time. It
doesn't come with a database itself; you'll have to install one seperately,
and then configure Hibernate to connect to the DB.

- Oliver
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top