Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的数据库中有:
name mime size data Untitled.txt text/plain bigint(20) Mediumblob
我想在我的文件中搜索我为搜索命令获得的单词。
也许从数据库中提取文件并使用 fopen/fread 函数。
添加一个文本格式的新列可能会更好。因此,在添加记录时,请使用 fopen/fread 从文件中获取数据并将其插入到 TEXT 列中。然后通过该字段进行搜索。
SELECT * FROM table WHERE textmime LIKE '%searchinput%'
其中“textmime”是存储文件文本版本的列。
只是一个想法