WHERE clause character delimit specifier for sqlite

Issue #993 resolved
Former user created an issue

Without a special clause, sqlite provides no way to search for the '%' and '_' characters. The following query is supported by sqlite3, but isn't supported by sqlalchemy.

select * from signals where signal_range like '%\%%' escape '\';

The ESCAPE clause configures the specified character to be a delimiting character. Currently, sqlite does not default and requires the ESCAPE clause to set the delimiter.

Comments (3)

  1. Log in to comment