RE: Multiple sql statements inside a single mapped statement

2005-03-18 Thread Gabriel Rosu
t: Re: Multiple sql statements inside a single mapped statement Only if your JDBC driver supports it. E.g. Oracle does, MySQL doesn't. Cheers, Clinton On Fri, 18 Mar 2005 12:11:59 -0800, Gabriel Rosu <[EMAIL PROTECTED]> wrote: > > > Hi guys, > Anybody knows if there&

Re: Multiple sql statements inside a single mapped statement

2005-03-18 Thread Clinton Begin
Only if your JDBC driver supports it. E.g. Oracle does, MySQL doesn't. Cheers, Clinton On Fri, 18 Mar 2005 12:11:59 -0800, Gabriel Rosu <[EMAIL PROTECTED]> wrote: > > > Hi guys, > Anybody knows if there's a way to have multiple sql statements inside a > single mapped statement, some like th

Re: Multiple sql statements inside a single mapped statement

2005-03-18 Thread Ron Grabowski
Try putting a semi-colon at the end of each line: Insert into table1(...) values(...); Insert into table1(...) values(...); --- Gabriel Rosu <[EMAIL PROTECTED]> wrote: > Hi guys, > Anybody knows if there's a way to have multiple sql statements inside > a single mapped statement, some like this: