Is there a pure sqlite request to find a string in a database ?
With a bit of shell, I can extract the schemas from the tables:
for i in *sqlite;
do sqlite3 $i ".tables"
| grep -Eoh "[^ ]+"
| while read t; do
echo -n "$i:$t ";
sqlite3 $i '.schema "'"$t"'"';
done;
echo;
done
Then I could find which column has the type TEXT, and make a request.
But is there a pure SQL way to do this in a terminal ?