UI: StatSql: Fix typo

This commit is contained in:
Nodir Temirkhodjaev 2022-01-14 12:28:27 +03:00
parent f85c215529
commit 4ada22d2bb

View File

@ -2,7 +2,7 @@
const char *const StatSql::sqlSelectAppId = "SELECT app_id FROM app WHERE path = ?1;"; const char *const StatSql::sqlSelectAppId = "SELECT app_id FROM app WHERE path = ?1;";
const char *const StatSql::sqlInsertAppId = "INSERT INTO app(path, creat_time) VALUES(?1, ?3);"; const char *const StatSql::sqlInsertAppId = "INSERT INTO app(path, creat_time) VALUES(?1, ?2);";
const char *const StatSql::sqlDeleteAppId = "DELETE FROM app WHERE app_id = ?1;"; const char *const StatSql::sqlDeleteAppId = "DELETE FROM app WHERE app_id = ?1;";