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 dbDMS As ADODB.Connection
Set dbDMS = New ADODB.Connection
dbDMS.Open "Provider=sqloledb; Data Source=
;Initial Catalog=
;User Id=
;Password=
;"
Dim rstTest As ADODB.Recordset
Dim strSelectSQL as String
strSelectSQL = "Select * from TestTable"
Set rstTest = New ADODB.Recordset
rstTest.ActiveConnection = dbDMS
rstTest.Open strSelectSQL
rstTest.close
dbDMS.Execute ("Insert testtable(Name, Surname) values (Robert, Mottram)")
oConn.Open "DSN=mySystemDSN;Uid=myUsername;Pwd=myPassword;"