in reply to Re^4: DBI Prematurely Disconnecting
in thread DBI Prematurely Disconnecting
now with more results it executes fully:Select * from tempTable; Update tempTable set done=1 where id=1; Update tempTable set done=1 where id=2; --connection gets broken
In the stored procedure the updates are within a while loop that generates the id so in this case no additional print or raiserror was being used.Select * from tempTable; Update tempTable set done=1 where id=1; Update tempTable set done=1 where id=2; Update tempTable set done=1 where id=3; Update tempTable set done=1 where id=4; Update tempTable set done=1 where id=5;
|
---|