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 cn As New ADODB.Connection
Dim strCS As String
strCS = "DRIVER={SQL Server};SERVER=PW-TEST;DATABASE=Inventory;UID=****;PWD=****"
cn.ConnectionString = strCS
cn.Open
Dim cmdCommand As New ADODB.Command
Dim rstRecordSet As New ADODB.Recordset
With cmdCommand
.ActiveConnection = cn
.CommandText = "SELECT GUID FROM Stock;"
.CommandType = adCmdText
End With
With rstRecordSet
.CursorType = adOpenStatic
.CursorLocation = adUseClient
.LockType = adLockOptimistic
.Open cmdCommand
End With