> But I'm not getting any results when I combine these using OR:
>
> SELECT rowid FROM EntryHeaders eh WHERE ( eh.Paragraph MATCH '91' ) OR (
> eh.Title MATCH 'civil' )

See http://www.sqlite.org/fts3.html#section_3 . Your query should be more like:

SELECT rowid FROM EntryHeaders WHERE EntryHeaders MATCH "Paragraph:91
OR Title:civil"

Alex.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to