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.