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 as ADODB.recordset
Dim strCon as ADODB.connection
Dim strSQL as string
set strcon = new ADODB.connection
strcon.open "ODBC;DSN=ODBC Driver Name" 'or an OLEDB string: "Driver={SQL Server};Server=ServerName;User ID=abc;Password=abc123;Database=Customer_Info"
strSQL = "SQL String here"
set rs = strcon.execute(strSQL)
'work with rs - fields collection for headers, copyfromrecordset method to dump data to worksheet