SetConnectionPropertiesRMS
This method sets the URL and connection string for the Remote Matching Service (RMS).
Syntax
SetConnectionPropertiesRMS(ByVal URL As String, byVal ConnectionString As String)
Parameter | Description |
---|---|
URL | URL of the Remote Matching Service |
ConnectionString | Connection string to the Remote Matching Service |
Sample Code
Dim oFieldAnalysissettings As ISCBCdrAnalysisSettings
Dim oPoolAnalysisSettings As SCBCdrSupExSettings
Project.AllClasses("Invoices").GetFieldAnalysisSettings("VendorName", "German", oFieldAnalysissettings)
Set oPoolAnalysisSettings = Project.AllClasses("Invoices").Fields("VendorName").AnalysisSetting("German")
If Not oPoolAnalysisSettings Is Nothing Then
oPoolAnalysisSettings.PoolName = "MyIndex"
oPoolAnalysisSettings.SetConnectionPropertiesRMS("<URL>", "<CONNECTION STRING>")
oPoolAnalysisSettings.PoolVersion = 4
End If