You are using the most
recently installed version of the
Dim obConnection As New ADODB.Connection obConnection.Open "Provider=sas.ShareProvider; _ Data Source=shr1;Mode=adModeRead; _ Location=ShareServer.example.com; _ User ID=tjones;Password=e7tjb" |
|
The SAS 9.3 version
of the IOM provider is being used to open a bridge connection to a
remote server with host authentication.1
Dim obConnection As New ADODB.Connection obConnection.ConnectionString = "Provider=SAS.IOMProvider.9.3; _ Data Source=iom-bridge://workspace.example.com:8591; _ User ID=tjones;Password=e7tjb" obConnection.Open |
|
You are using the most
recently installed version of the local provider to open a local connection
to a SAS Version 6 data set located in
c:\v6data .Dim obConnection As New ADODB.Connection obConnection.Provider = "sas.LocalProvider" obConnection.Properties("Data Source") = "c:\v6data" obConnection.Properties("SAS File Format") = "V6" obConnection.Open |
|
1This sample code uses the Data Source URI format. |