Re: iBATIS 3 for Java Released (BETA 1)

2009-08-10 Thread Fidel Viegas
On Tue, Aug 11, 2009 at 12:01 AM, Clinton Begin wrote: > The migrations support any SQL... DDL or DML... Schema or data.  As > long as it ends in a semicolon, you're good to go.  Actually, even the > semi-colon is configurable.  :-) > Thanks Clinton. I was just reading the manual and didn't try it

Re: iBATIS 3 for Java Released (BETA 1)

2009-08-10 Thread Clinton Begin
The migrations support any SQL... DDL or DML... Schema or data. As long as it ends in a semicolon, you're good to go. Actually, even the semi-colon is configurable. :-) Clinton On 2009-08-10, Fidel Viegas wrote: > Hi Nathan, > > Thanks for sharing the brand new features of iBatis. I quite lik

Re: iBATIS 3 for Java Released (BETA 1)

2009-08-10 Thread Fidel Viegas
Hi Nathan, Thanks for sharing the brand new features of iBatis. I quite like the migrations tool, but I do have a question that I haven't found in the documentation. Does it support stored procedures as well? Regards, Fidel. -

Re: iBATIS 3 for Java Released (BETA 1)

2009-08-10 Thread Brandon Goodin
No it is not on the maven repo. Brandon On Mon, Aug 10, 2009 at 12:15 PM, Zhubin Salehi wrote: > > Is it already on Maven2 repository? I couldn't find it under > http://repo1.maven.org/maven2/org/apache/ibatis/ > > > Ing. Jan Novotný wrote: > > > > Congratulations, I can't wait to see whether al

Re: iBATIS 3 for Java Released (BETA 1)

2009-08-10 Thread Ian Zabel
Congrats, everyone! This is great to see! Cheers, Ian. On Sat, Aug 8, 2009 at 3:36 PM, Nathan Maves wrote: > A month ago iBATIS turned 7 years old, and while we're celebrating a > little late, today we're happy to announce iBATIS 3 for Java. iBATIS 3 > is a complete rewrite from the ground up an

Re: iBATIS 3.0 Beta 1 on Maven Repository

2009-08-10 Thread Clinton Begin
Maven is a broken process, because I have to do extra work. Maven is not a feature of ibatis. At best, it's a bonus if it makes it in at all. Maven should work more like git. Their project team and network of affiliates should 'pull' jars into their repository. I never signed up to be bound by

Re: iBATIS 3.0 Beta 1 on Maven Repository

2009-08-10 Thread Zhubin Salehi
I totally agree with you, I hate it when some projects are only available on Maven, although I'm a Maven user. But if they are available on Maven as well as dowloadable archives, it eases development and build. Zhubin Alex Sherwin wrote: > > Personally, I can't stand it when projects push out

Re: iBATIS 3.0 Beta 1 on Maven Repository

2009-08-10 Thread Brandon Goodin
Nathan Maves just discussed this with me today. We will review our current build process and assemble an Apache friendly way to manage the deployments. I'm not sure when this will happen. We are all quite busy. Ultimately the goal will be to handle the the dist build and the artifact build all at t

Re: iBATIS 3.0 Beta 1 on Maven Repository

2009-08-10 Thread Zhubin Salehi
The truth is that I love iBATIS, it's a great framework and I just can't wait to try the new beta version. Of course I can install the beta version into my local repository, but then no one else at the office and and most-importantly the build server will not be able to find it. As for your quest

Re: iBATIS 3.0 Beta 1 on Maven Repository

2009-08-10 Thread Alex Sherwin
Personally, I can't stand it when projects push out a maven repo first, or only a maven repo. Not everyone uses maven, and for those of us who don't, it makes it pretty inconvenient when that's the way the project pushes out builds. Zhubin Salehi wrote: Hi, Is it possible to put iBATIS 3.0

Re: iBATIS 3.0 Beta 1 on Maven Repository

2009-08-10 Thread Bhaarat Sharma
touche @ the attitude! On Mon, Aug 10, 2009 at 4:15 PM, Clinton Begin wrote: > Lots of people actually use it without maven or the attitude. > > We have people to deploy to the repo, and I'm sure they'll get to it soon. > > Do snapshot/beta releases go to the maven repo? > > Clinton > > On 2009-

Re: iBATIS 3.0 Beta 1 on Maven Repository

2009-08-10 Thread Clinton Begin
Lots of people actually use it without maven or the attitude. We have people to deploy to the repo, and I'm sure they'll get to it soon. Do snapshot/beta releases go to the maven repo? Clinton On 2009-08-10, Zhubin Salehi wrote: > > Hi, > > Is it possible to put iBATIS 3.0 Beta 1 on Maven rep

iBATIS 3.0 Beta 1 on Maven Repository

2009-08-10 Thread Zhubin Salehi
Hi, Is it possible to put iBATIS 3.0 Beta 1 on Maven repository so people can "actually" use (or test) it? Thanks, Zhubin -- View this message in context: http://www.nabble.com/iBATIS-3.0-Beta-1-on-Maven-Repository-tp24905508p24905508.html Sent from the iBATIS - User - Java mailing list archiv

Re: iBATIS 3 for Java Released (BETA 1)

2009-08-10 Thread Zhubin Salehi
Is it already on Maven2 repository? I couldn't find it under http://repo1.maven.org/maven2/org/apache/ibatis/ Ing. Jan Novotný wrote: > > Congratulations, I can't wait to see whether all visions get fullfilled. > > Thank you, > Jan Novotný > > 2009/8/8 Nathan Maves > >> A month ago iBATIS t

Re: effects to mappings when moving from sql to oracle.

2009-08-10 Thread Sundar Sankar
If your code is changing from sql stored procs to oracle stored procs, i dont think your mapping files will have to change very much. However, if you do have a good object model that you can reuse, I guess u can inherit the same on to your xml and make the same be returned when you call the store

effects to mappings when moving from sql to oracle.

2009-08-10 Thread Bhaarat Sharma
We are changing a lot of our DAO code so that it works the ORM way rather than conventional CallableStatement way. Right now we will be going from conventional DAO to iBatis way relative to sql server...but later on we will be moving from iBatis (sql server) to iBatis (oracle). My question is, is