Simple search engine (newbie)

I'd like to build a simple search engine against Sql Server. Does .NET Framework provide some class to help in this task? From what I've heard there is an interface which implements it..
[189 byte] By [liszt] at [2007-12-17]
# 1
I don't recall hearing about any particular class for searching in sql server. There is a com interface called iFilter, but normally people simply utilise t-sql to do searches. If it's a table/column level search you can simply use operators such as like, =,<> etc. eg. select * from mytable where mycolumn like '%somevalue%' (note: % is the wildcard character)

If you're looking to perform a deeper search, then look at using fulltext search. It allows operators such as contains, freetext etc., and allows you to query at a catalog level (a catalog can be a number of objects). You just use the sql via the sqlclient namespace as you would a normal query.

Cathal

CathalConnolly at 2007-9-9 > top of Msdn Tech,Windows Forms,Windows Forms General...