Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
declare @Dummy tinyint
Declare cursor...
open cursor...
fetch ...
while @@fetch_status = 0
begin
<Commands on cursor loop...>
-- add the following after commands
-- that may fail:
-- if @@error <> 0
-- set @Dummy = 1
fetch...
end