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.
dim rs
set rs = server.createobject (ôADODB.Recordsetö)
rs.activeconnection = con
rs.cursortype = adOpenStatic
rs.cursorlocaton = adUseClient
rs.locktype = adLockOptimistic
rs.open ôSELECT * FROM myLittleTableö
set rs.activeconnection = nothing
con.close
dim sqlStatement
sqlStatement = ôSELECT * FROM myLittleTableö
rs.cursorLocation = adUseClient
rs.open sqlStatement, con, adOpenDynamic ,adLockBatchOptimistic