我想用自动完成ajax控件搜索lastname和firstname。但我收到错误在预期条件的上下文中指定的非布尔类型的表达式,靠近','。知道我做错了什么吗?在Words(0)行发生错误。 谢谢!
Public Function GetCompletionList(prefixText As String, count As Integer, ByVal contextKey As String) As String()
Try
Dim words As String() = prefixText.Split(New Char() {","c})
Dim Con As SqlConnection
Dim cmd As SqlCommand
Con = New SqlConnection
Dim test As String
test = contextKey
Con.ConnectionString = ""
Con.Open()
cmd = New SqlCommand
cmd.Connection = Con
cmd.CommandText = "SELECT NPI, [Entity Type Code], [Provider Last Name (Legal Name)], [Provider First Name],[Provider First Line Business Mailing Address], [Provider Business Mailing Address City Name], [Provider Business Mailing Address State Name], [Provider Business Mailing Address Postal Code] FROM NPIData WHERE ([Provider Business Mailing Address State Name] = @State) AND ('" & words(0) & "','" & words(1) & "' LIKE N'%' + @Provider + N'%') ORDER BY [Provider First Name]"
cmd.Parameters.AddWithValue("@Provider", prefixText)
cmd.Parameters.AddWithValue("@State", contextKey)
Dim customers As List(Of String) = New List(Of String)
Dim reader As SqlDataReader = cmd.ExecuteReader()
While reader.Read
customers.Add(reader("Provider Last Name (Legal Name)").ToString + ", " + reader("Provider First Name").ToString + " " + reader("Provider First Line Business Mailing Address").ToString + " " + reader("Provider Business Mailing Address City Name").ToString + ", " + reader("Provider Business Mailing Address State Name").ToString + " " + reader("Provider Business Mailing Address Postal Code").ToString + " " + reader("NPI").ToString)
End While
Con.Close()
Return customers.ToArray
Catch ex As Exception
End Try
End Function
答案 0 :(得分:0)
在你说你失败的地方你有
('" & words(0) & "','" & words(1) & "' LIKE N'%' + @Provider + N'%')
如果word(0)包含txt1且worda(1)包含txt2,则计算结果为
'txt1','txt2'
LIKE ......
您无法将逗号分隔的字符串列表与LIKE进行比较。
我不知道你是否打算连接单词(0)和单词(1)来获取
'txt1txt2' LIKE
...
需要
('" & words(0) & words(1) & "' LIKE N'%' + @Provider + N'%')
或进行单独的比较,这需要
('" & words(0) & "' LIKE N'%' + @Provider + N'%' OR ' & words(1) & "' LIKE N'%' + @Provider + N'%')