Syntax Question
From: Umpty (Umpty_at_discussions.microsoft.com)
Date: 12/28/04
- Previous message: bennymi: "shell for rule based expert system"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 28 Dec 2004 11:53:01 -0800
Trying to use Microsoft Indexing Service.
Here is my code using SQL Query Analyzer, which works perfectly.
SELECT * FROM
OPENQUERY(FileSystem,
'SELECT RANK, FileName, Characterization
FROM SCOPE(''"/ASPNetDemo/Resumes"'')
WHERE FREETEXT(''Baione'') > 0
ORDER BY RANK DESC' )
but... when I put this code in the script in my ASPX page, apparently the
syntax does not work. The following is all of my code.
Sub btnSearch_Click(ByVal s As Object, ByVal e As EventArgs)
Dim conMyData As SqlClient.SqlConnection
Dim strSearch As String
Dim cmdSearch As SqlClient.SqlCommand
Dim dtrSearch As SqlClient.SqlDataReader
conMyData = New
SqlClient.SqlConnection("Server=Localhost;UID=sa;PWD=test;Database=Pubs")
strSearch = "SELECT * FROM " & _
"OPENQUERY(FileSystem, " & _
"'SELECT RANK, FileName, VPath, Characterization " & _
"FROM SCOPE(''" & "/ASPNetDemo/Resumes" & "'') " & _
"WHERE FREETEXT(''" & txtSearchPhrase.Text & _
"'') > 0 " & _
"ORDER BY RANK DESC' )"
cmdSearch = New SqlClient.SqlCommand(strSearch, conMyData)
conMyData.Open()
Try
dtrSearch = cmdSearch.ExecuteReader()
lblResults.Text = "<ul>"
While dtrSearch.Read
lblResults.Text &= "<li> (" & dtrSearch("RANK") / 10 & "%) "
lblResults.Text &= "<a href=""" &
dtrSearch("VPath").ToString()
lblResults.Text &= """>"
lblResults.Text &= dtrSearch("FileName") & "</a><br>"
lblResults.Text &= dtrSearch("Characterization")
lblResults.Text &= "<p>"
End While
Catch ex As Exception
lblResults.Text = "Please rephrase your query"
End Try
conMyData.Close()
End Sub
*If I do not pass any parameters, then this code works, its just when I
attempt to tell it to distinctly look into the specified folder that it does
not work.
Any help in pointing out the correct syntax using the SCOPE function would
be greatly appreciated.
Thanks
- Previous message: bennymi: "shell for rule based expert system"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|