Performing non-SQL searches like available in the console

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?

Ping

Hi, Simon.
Yes, you can use SQL queries in Backendless console where form.
Do you encounter problems with it?

Yes, this is exactly how I would do it. A “like” search for every string or text column.

Cheers!