1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-19 23:52:43 +02:00
Files
OpenIntegrations/docs/en/examples/SQLite/DeleteRecords.txt

17 lines
493 B
Plaintext
Raw Normal View History

2025-04-16 22:15:09 +03:00
 Base = "C:\Users\Administrator\AppData\Local\Temp\v8_4D76_3e.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);