I have a text file which I am saving in Mysql as BLOB type. Is it possible to search that table using the text content in the saved text file?
Please help. Thanks in advance
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.
Depends on your text file format, you could search like TEXT with BLOB if the content was not compressed. You could also create full-text index with BLOB. Beware comparison in BLOB is case-sensitive.