Oracle objects mapping in iBatis 3

2010-02-05 Thread Samek Jiri - AZ Direct
Hallo, I have a stored procedure in DB (running on Oracle) with one parameter - an Oracle object: create or replace type TEST1STRING as object( str VARCHAR(50) ) create or replace procedure test1(str IN OUT TEST1STRING) IS BEGIN str.str := 'justsometext'; END; I am trying to call this

Re: Mapper parsing problem

2010-02-05 Thread Marco Speranza
Hi Clinton, I totally agree with you when you speak about format but let me explain better: there are customers QA that impose strict coding rules - XML files included - and one of them checks if a codeline is contained in 'n' chars. Even if nobody agree, in this scenario the QA could not accept

Migration schema windows script

2010-02-05 Thread Marco Speranza
Hi all I found a little problem with the migration schema on the windows system. If into %MIGRATION_HOME%/lib there are more then one jar, the script migration.cmd raise this exception: Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/ibatis/migration/Migrator Caused by: jav

Re: Migration schema windows script

2010-02-05 Thread Nathan Maves
Best to open a JIRA so that we can track it. Drop your patch into the ticket and we can get this fixed right away. Nathan On Feb 5, 2010, at 11:01 AM, Marco Speranza wrote: > Hi all > > I found a little problem with the migration schema on the windows system. > > If into %MIGRATION_HOME%/lib

XML vs Annotations

2010-02-05 Thread Daryl Stultz
Hello, I think it's great that iBatis supports both XML and annotations. I don't necessarily prefer one over the other but I kind of prefer to do everything one way. The docs state that "You will notice that join mapping is not supported via the Annotations API. This is due to the limitation in Ja

Re: XML vs Annotations

2010-02-05 Thread Guy Rouillier
On 2/5/2010 5:15 PM, Daryl Stultz wrote: Hello, I think it's great that iBatis supports both XML and annotations. I don't necessarily prefer one over the other but I kind of prefer to do everything one way. The docs state that "You will notice that join mapping is not supported via the Annotatio