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

17 lines
491 B
Plaintext
Raw Normal View History

2025-01-12 19:10:21 +03:00
 Base = "C:\Users\Administrator\AppData\Local\Temp\v8_E607_1d.sqlite";
2025-01-05 14:53:23 +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.DeletePosts(Table, FilterStructure, Base);