Bridge with a
logical server name defined in a SAS Metadata Server and IWA1
|
|
Logical server
name defined in a SAS Metadata Server that is configured via the SAS
Integration Technologies configuration utility2
|
|
1Extra quotation marks are required because of the semicolon used in the "Data Source" property value. If you are not using a connection string, then you do not need the extra quotation marks. | |
2The SAS Integration Technologies configuration utility (ITConfig) enables you to create a configuration file that contains information about how to access the metadata server. The provider uses that metadata server in order to resolve logical server names. |
Dim obConnection As New ADODB.Connection obConnection.Provider = "sas.IOMProvider" obConnection.Properties("Data Source") = "workspace" obConnection.Properties("SAS Port") = 8591 obConnection.Properties("SAS Machine DNS Name") = "workspace.example.com" obConnection.Properties("SAS Protocol") = SASObjectManager.ProtocolBridge obConnection.Properties("User ID") = "jdoe" obConnection.Properties("Password") = "734fi" obConnection.Open