1

Allow wildcard searches for terms

Former-commit-id: 36a1031eaa5517afe836b966568b888a49803db9
This commit is contained in:
Alex Yatskov 2013-11-08 13:02:55 -08:00
parent 0c4fff7d3e
commit 80c37a0c85

View File

@ -26,14 +26,14 @@ class Dictionary:
self.indices = set()
def findTerm(self, word):
def findTerm(self, word, partial=False):
cursor = self.db.cursor()
if not self.hasIndex('TermIndex'):
cursor.execute('CREATE INDEX TermIndex ON Terms(expression, reading)')
self.db.commit()
cursor.execute('SELECT * FROM Terms WHERE expression=? OR reading=?', (word, word))
cursor.execute('SELECT * FROM Terms WHERE expression {0} ? OR reading=?'.format('LIKE' if partial else '='), (word, word))
return cursor.fetchall()