I am using Groovy Sql to fetch results. This is the output from my Linux box. Actually there are 2 statements involved sp_configure 'number of open partitions' and go see below

%isql -U abc -P abc -S support
1> sp_configure 'number of open partitions'
2> go
Parameter Name                 Default     Memory Used Config Value
     Run Value    Unit                 Type
------------------------------ ----------- ----------- ------------
     ------------ -------------------- ----------
number of open partitions              500        5201         5000
             5000 number               dynamic

(1 row affected)
(return status = 0)
1>

I am using groovy code

def sql = Sql.newInstance("jdbc:abc:sybase://harley:6011;DatabaseName=support;",dbuname,dbpassword,Driver)
sql.eachRow("sp_configure 'number of open partitions'"){ row ->
        /*println row.run_value*/
    }

Is there a way to execute statements in batch?

I am using Sybase

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Just try this

sql.eachRow("sp_configure 'number of open partitions'"){ row ->
        println row.'Parameter Name'.trim    }
link|improve this answer
that worked.. thanks – Abhishek Simon Jan 23 at 9:51
feedback

Not sure if it will work, but you might be able to do:

sql.call("sp_configure 'number of open partitions'")
sql.eachRow("go"){ row ->
  ...
}
link|improve this answer
Hi, can you please take a look at this question thanks – Abhishek Simon Jan 23 at 11:46
feedback

Have not actually tried this [yet] but:

sql.call("sp_configure 'number of open partitions'")
int[] updateCounts = sql.withBatch({
   sql.eachRow("go"){ row ->
     ...
   }
})

// check your updateCounts here for errors
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.