1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-25 21:39:21 +02:00

17 lines
493 B
Plaintext
Raw Normal View History

2025-02-27 13:01:50 +03:00
 Base = "C:\Users\Administrator\AppData\Local\Temp\v8_4102_79.sqlite";
2025-02-15 13:38:30 +03:00
Table = "test";
Filters = New Array;
FilterStructure = New Structure;
FilterStructure.Insert("field", "name");
FilterStructure.Insert("type" , "=");
FilterStructure.Insert("value", "Vitaly A.");
FilterStructure.Insert("union", "AND");
FilterStructure.Insert("raw" , False);
Filters.Add(FilterStructure);
Result = OPI_SQLite.DeleteRecords(Table, FilterStructure, Base);