I am developing an Application using PHP and SQLite. And I create a my table’s column with BLOB data types. I want to know that does BLOB data types in SQLite supports FULL-text search?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As I understand the documentation, the type specified is parsed, but ignored:
a datatype name may be optionally specified for each column. This is pure syntactic sugar, the supplied typenames are not used by FTS or the SQLite core for any purpose.
This suggests that all columns in the table are created as TEXT or TEXT-like columns.
(As I understand, you are supposed to move columns eligible for full-text search to a separate virtual FTSx table, and just reference them through their FTSDx rowid).