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.
cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source='<csvpath>';" & _
"Extended Properties=Text"
'Import by using Jet Provider.
strSQL = "SELECT * INTO [odbc;Driver={SQL Server};" & _
"Server=<server>;Database=<database>;" & _
"UID=<user>;PWD=<password>].<newtable> " & _
"FROM <filetoimport.csv>"
cn.Execute strSQL, lngRecsAff, adExecuteNoRecords
MsgBox "Records affected: " & lngRecsAff