1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/examples/SQLite/DeleteRecords.txt

17 lines
485 B
Plaintext
Raw Normal View History

2025-10-19 10:12:36 +03:00
 Base = "C:\Users\bayse\AppData\Local\Temp\v8_2F49_2c.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);