Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a piece of java code that connects to a SQL Server that does something like the following:

First a bunch of batch through stmt.addBatch

declare @crt_dt as datetime
set @crt_dt = (select getdate())

update a_table set the_timestamp=@crt_dt

Then a select using stmt.executeQuery

select @crt_dt as my_timestamp

Then stmt.executeBatch

Then conn.commit

The problem I have is that I got an error on select execution. What did I do wrong? Or is there an alternative to get the value @crt_dt out?

Also, if I don't have select, everything is all fine, except that I got a return int array with the values -2, 1, -3. I don't understand where -3 came from.

share|improve this question
Also, if I don't have select, everything is all fine, except that I got a return int array with the values -2, 1, -3. I don't understand where -3 came from. – user1045358 Nov 14 '11 at 10:23

1 Answer

My guess is that you cannot run the stmt.executeQuery inside the context of the batch, or that you have to run the stmt.executeBatch before the stmt.executeQuery.

Can you just add the select @crt_dt as my_timestamp to the batch? In other words, can you return values from the batch?

share|improve this answer
how do i get the value from the select if i put it in batch? the execute batch just returns a bunch of int codes. – user1045358 Nov 18 '11 at 9:33
I looked up the command (I'm not a Java guy) and I see that you cannot return a result set when you call stmt.executeBatch. I think you need to put all the code in one stmt.executeQuery command or put all the code in a stored procedure and use stmt.executeQuery to run the commands and return the result set. – Scott Bruns Nov 18 '11 at 15:38
The way it works is that the sql is generated in difference parts of the code. Besides, the executeQuery call on each sql will cause @crt_dt not declared error in subsequent call. – user1045358 Nov 19 '11 at 3:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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