Commit 1cd95dc0 authored by 潘栩锋's avatar 潘栩锋 🚴

BufferError.Reset 写错了, DELECT->DELETE

parent 5716b674
...@@ -75,7 +75,7 @@ namespace FLY.OBJComponents.Server ...@@ -75,7 +75,7 @@ namespace FLY.OBJComponents.Server
{ {
//SQLs //SQLs
List<string> sqls = new List<string>(); List<string> sqls = new List<string>();
sqls.Add($"DELECT FROM {dBModel.TbError.TableName}"); sqls.Add($"DELETE FROM {dBModel.TbError.TableName}");
dBModel.sqliteHelper.QueryTranAsync(sqls); dBModel.sqliteHelper.QueryTranAsync(sqls);
NewestID = 0; NewestID = 0;
Count = 0; Count = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment