C
Carl
Hi,
I have an ASP app that queries MS Indexing Service.
Below is my code.
#############################
Imports System
Imports System.Data.SqlClient
Dim strCatalog As String
' Catalog Name
strCatalog = "Test"
Dim connString As String
= "Provider=MSIDXS.1;Integrated Security .='';Data
Source='" & strCatalog & "'"
Dim conn As New SqlConnection(connString)
conn.Open()
################################
When I try to open the connection I get the message
"Exception Details: System.ArgumentException:
Keyword not supported: 'provider'."
Any help would be much appreciated.
tnx
carl
I have an ASP app that queries MS Indexing Service.
Below is my code.
#############################
Imports System
Imports System.Data.SqlClient
Dim strCatalog As String
' Catalog Name
strCatalog = "Test"
Dim connString As String
= "Provider=MSIDXS.1;Integrated Security .='';Data
Source='" & strCatalog & "'"
Dim conn As New SqlConnection(connString)
conn.Open()
################################
When I try to open the connection I get the message
"Exception Details: System.ArgumentException:
Keyword not supported: 'provider'."
Any help would be much appreciated.
tnx
carl