J
Jeff
I am working on a knowledge base search engine.
I am searching from a form on a webpage named kbsearch.asp that has a text
box that is named KBKeyword. There are other text boxes on the form but I
didn't think it would affect the query. The other text boxes are KBTitle,
KBAuthor and KBSymtoms.
The form posts to a page named KBSearchResults.asp that has the database
results on it.
I have decided that I will try the SQL Full Text index to search with. I
have Full Text indexing setup and running fine. (To the best of my knowledge)
I am trying the following query in the DRW and it contains errors according
to the DRW.
select KBNumber,KBKeyword,KBTitle,KBSymptoms from KB where
contains((KBKeyword,KBTitle,KBSymptoms), '::KBKeyword ::')
I know the query works because I can hard code the varible '::KBKeyword::'
to 'NAT' or somthing else and it works fine. I don't know how to pass the
KBKeyword varible properly.
I am searching from a form on a webpage named kbsearch.asp that has a text
box that is named KBKeyword. There are other text boxes on the form but I
didn't think it would affect the query. The other text boxes are KBTitle,
KBAuthor and KBSymtoms.
The form posts to a page named KBSearchResults.asp that has the database
results on it.
I have decided that I will try the SQL Full Text index to search with. I
have Full Text indexing setup and running fine. (To the best of my knowledge)
I am trying the following query in the DRW and it contains errors according
to the DRW.
select KBNumber,KBKeyword,KBTitle,KBSymptoms from KB where
contains((KBKeyword,KBTitle,KBSymptoms), '::KBKeyword ::')
I know the query works because I can hard code the varible '::KBKeyword::'
to 'NAT' or somthing else and it works fine. I don't know how to pass the
KBKeyword varible properly.