-1

I am going thru IndexDB or lovefield but so far could not find way to search partial text like we do in SQL queries via LIKEkeyword. Can someone guide me how could it be achieved?

Volatil3
  • 14,253
  • 38
  • 134
  • 263
  • _Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it._ – Andreas Apr 23 '18 at 11:15
  • fuse.js is a light-weight search index you could use – Sergiu Paraschiv Apr 23 '18 at 11:16

1 Answers1

1

lovefield has the match function for pattern matching which is similar to the SIMILAR keyword in SQL which inturn is similar to the LIKE keyword. Please have a look at it and see if it does the job

https://github.com/google/lovefield/blob/master/docs/spec/04_query.md

UchihaItachi
  • 2,602
  • 14
  • 21