Hi,

I found Hibernate to be less complex than EJBs and it does the job for what
I need.
You can reverse-engineer an existing database to create JavaBean classes
from it, you can take existing javabeans and generate database-generation
SQL code to create the tables, and a lot of other useful things.
And guess what ? It's free.

http://hibernate.bluemars.net/

Using Hibernate is as simple as :

------------------------------------------------------------------
Session ses = SessionFactory.getSession();

MyBean bean = new MyBean();
bean.setProperty("property value");

ses.save(bean);
ses.flush();
------------------------------------------------------------------

And you bean is saved in your database!!

HTH,
David

----- Original Message -----
From: "Donghyeok Kang" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, March 04, 2003 4:56 AM
Subject: Is an OR mapping tool helpful?


> Hi, all...
>
> My project team are considering an OR mapping tool.
>
> I have looked into some open source projects developing OR mappings.
>
> I don't think it's easy to use them at all.
>
> Some of them seems to be more complex than entity beans of EJB.
>
> I wonder if an OR mapping tool is really helpful or useful in developing.
>
> Please give me an advice on OR mapping.
>
> Thanks in advance.
>

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

Some relevant archives, FAQs and Forums on JSPs can be found at:

 http://java.sun.com/products/jsp
 http://archives.java.sun.com/jsp-interest.html
 http://forums.java.sun.com
 http://www.jspinsider.com

Reply via email to