In the console, it’s possible to do non-SQL (i.e. with the SQL toggle turned off) searches of the contents of the selected table by simply typing in arbitrary text.
How is this actually implemented? If I wanted to offer the same functionality in my app would I just prepare a where clause something like:
“col1 LIKE ‘%searchText%’ OR col2 LIKE ‘%searchText%’ OR col3…” for every column in the table?