Use LIKE instead of =.

This commit is contained in:
W1CDN 2023-05-13 11:14:21 -05:00
parent a99de3a859
commit 863efdd84c

View File

@ -124,7 +124,7 @@ def select_frames(conn, n, from_, url_params):
field_where = dictfilt(url_params, db_fields)
# Then loop through fields to create query parts
# From https://stackoverflow.com/a/73512269/2152245
field_where_str = ' AND '.join([f'"{k}" = \'{v}\'' for k,v in field_where.items()])
field_where_str = ' AND '.join([f'"{k}" LIKE \'{v}\'' for k,v in field_where.items()])
cur = conn.cursor()
# Workaround to deal with missing value in WHERE