Searches in the name field has been extended to the description as well (close #44)

This commit is contained in:
Marco Dalla Tiezza
2024-06-04 19:51:21 +02:00
parent f61527ed70
commit 10607c88ea
4 changed files with 185 additions and 182 deletions

View File

@@ -59,7 +59,7 @@ class Query():
############################## SELECT
SELECT_ALL_SIGNALS = "SELECT SIG_ID, NAME FROM signals ORDER BY NAME ASC"
SELECT_ALL_SIGNALS = "SELECT SIG_ID, NAME, DESCRIPTION FROM signals ORDER BY NAME ASC"
SELECT_ALL_MODULATION = "SELECT DISTINCT VALUE FROM modulation ORDER BY VALUE ASC"