in

System.Data.SQLite

An open source ADO.NET provider for the SQLite database engine

Correcting Full Text Search !! like Sql server text Full search

Last post 09-22-2010 3:05 AM by BilikTamas. 1 replies.
Page 1 of 1 (2 items)
Sort Posts: Previous Next
  • 08-03-2010 3:10 AM

    Correcting Full Text Search !! like Sql server text Full search

     Hi

    Im ALI AL SALAMI 

    I write very desktop applications with SQlite and C# or VB.NET

    and I Understand that it's very nice

    but in full text search has problem 

    Table1 

    C1

    -----------------

    MySchool

    School

    OurSchool

     

    in sql server if you have  : MySchool and search 

    SELECT  *   FROM   Table1   WHERE   CONTAINS ( C1 , ' * School * ' )

    return for you all record that in C1 has MySchool , OurSchool and ...  too or Like this

    but in SQLite 

    SELECT  *   FROM   Table1   WHERE  C1  MATCH (  ' * School * ' )

    return only Shool

    please Help me !!

  • 09-22-2010 3:05 AM In reply to

    Re: Correcting Full Text Search !! like Sql server text Full search

    Try this: SELECT * FROM Table1 WHERE C1 LIKE '%School'
Page 1 of 1 (2 items)
Powered by Community Server (Commercial Edition), by Telligent Systems