gk schrieb:
> 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/

Signature
Geld allein macht nicht glücklich.
Es kommt auch auf die Menge an...
> 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 ?
>
[quoted text clipped - 4 lines]
> 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
gk - 27 Sep 2006 11:34 GMT
Thanks for the nice explanation.
this helped.
> > hi,
> > what is hibernate ?
[quoted text clipped - 23 lines]
>
> - Oliver