-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 4 posts ] 
Author Message
 Post subject: Hibernate 3: Custom SQL
PostPosted: Sun Jul 09, 2006 12:40 am 
Newbie

Joined: Thu Jul 06, 2006 6:56 pm
Posts: 7
Hibernate 3 support Custom SQL as follows:

<class name="Person">
<id name="id">
<generator class="increment"/>
</id>
<property name="name" not-null="true"/>
<sql-insert callable="true">{call createPerson (?, ?)}</sql-insert>
<sql-delete callable="true">{? = call deletePerson (?)}</sql-delete>
<sql-update callable="true">{? = call updatePerson (?, ?)}</sql-update>
</class>


Could you give me an java code-example to demonstrate how to call them?

Thanks!


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jul 09, 2006 6:46 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 6:10 am
Posts: 8615
Location: Neuchatel, Switzerland (Danish)
Just use any other example on how to insert, delete and update hibernate objects - there is no difference.

_________________
Max
Don't forget to rate


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jul 09, 2006 7:25 am 
Newbie

Joined: Thu Jul 06, 2006 6:56 pm
Posts: 7
Thanks max.

I haven't done the test yet. I still have one question:
How does Hibernate know the right order of the parameters?

Because in the mapping file we just use quesion marks to describe the stored procedure. How does hibernate know which question mark represents which field?

(BTW: I won't forget to rate :) )


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jul 09, 2006 8:08 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 6:10 am
Posts: 8615
Location: Neuchatel, Switzerland (Danish)
As stated in the docs, currently it is hard coded against what hibernate wants them to be. See in the docs how you by enable debug logging can see what the sequence is.

_________________
Max
Don't forget to rate


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 4 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.