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 @name as nvarchar(128)
DECLARE MyCursor CURSOR FOR SELECT name from sysdatabases
open MyCursor
FETCH NEXT FROM MyCursor into @name
WHILE @@FETCH_STATUS = 0
BEGIN
--Do something with the variable here.
FETCH NEXT FROM MyCursor into @name
END
CLOSE MyCursor
DEALLOCATE MyCursor