mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-03-23 21:29:38 +02:00
17 lines
491 B
Plaintext
Vendored
17 lines
491 B
Plaintext
Vendored
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_E607_1d.sqlite";
|
|
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);
|