How about a Netbeans integration plugin?

2010-01-11 Thread Andrea Selva
Hi all, someone have news about the intentions of the NetbeansPlugin? Best regards Andrea

Re: How about a Netbeans integration plugin?

2010-01-11 Thread 傅玉宝
I don't use ! 2010/1/11 Andrea Selva selva.an...@gmail.com Hi all, someone have news about the intentions of the NetbeansPlugin? Best regards Andrea -- fu!

RE: Using Map as a parameter object

2010-01-11 Thread Joe Gooch
Thanks :) Sorry I'm not up on the JIRA procedures! Joseph Gooch Sapphire Suite Product Manager K12 Systems, Inc. (866) 366-9540 From: Clinton Begin [mailto:clinton.be...@gmail.com] Sent: Saturday, January 09, 2010 3:03 PM To: user-java@ibatis.apache.org

Re: stored procedure in iBatis 3

2010-01-11 Thread Clinton Begin
You're the only one reporting this problem, but you're not the only one using stored procs. Therefore, you'll have to help us out here. Trace through the source, enable logging, put something together to test this out. Clinton On Mon, Jan 11, 2010 at 2:23 AM, vishalj vish...@ivycomptech.com

3.0-beta-8 to central maven repository?

2010-01-11 Thread Tom Kunicki
Hi, I'm eager to test out 3.0-beta-8 and was wondering when this would be pushed out to the central maven repository? Thanks, Tom Kunicki Center for Integrated Data Analytics U.S. Geological Survey 8505 Research Way Middleton, WI 53562

Re: 3.0-beta-8 to central maven repository?

2010-01-11 Thread Nathan Maves
my bad I spaced out the maven deployment. Just uploaded them to apache. Now we will wait :) I will send out a blast to the email list once I see it out there. Feel free to watch as well. http://repo2.maven.org/maven2/org/apache/ibatis/ibatis-sqlmap/ On Mon, Jan 11, 2010 at 10:53 AM, Tom

[Announcement] iBATIS 3.0 beta 8 released

2010-01-11 Thread Nathan Maves
Beta 8 is out. There were only 4 issues discovered during this beta period, but more importantly, they were quite minor and quite low level. Two could be classified as non-functional/performance related. So the kinds of issues we're finding now are in the tweaks and tuning classification. This

Re: stored procedure in iBatis 3

2010-01-11 Thread vishalj
Thanks for the reply, am a newbie ,may be am missing out on something, This is my complete setup Mapping: select statementType=CALLABLE id=storedProc parameterType=Address resultType=Address {call TEST_SP(#{street},#{street,mode=OUT,jdbcType=VARCHAR})}

Re: stored procedure in iBatis 3

2010-01-11 Thread Clinton Begin
Ohhh It's because you're calling select. By default selects are not committed. Therefore, you need to call a forced commit by using: sqlSession.commit(true); Clinton On Mon, Jan 11, 2010 at 10:17 PM, vishalj vish...@ivycomptech.com wrote: Thanks for the reply, am a newbie ,may be am