2025-01-12 19:10:21 +03:00
|
|
|
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_E607_1d.sqlite";
|
2025-01-04 00:54:05 +03:00
|
|
|
Table = "test";
|
|
|
|
|
|
|
|
FieldsStructure = New Structure;
|
|
|
|
FieldsStructure.Insert("name" , "Vitaly A.");
|
|
|
|
FieldsStructure.Insert("salary", "999999");
|
|
|
|
|
|
|
|
Filters = New Array;
|
|
|
|
|
|
|
|
FilterStructure = New Structure;
|
|
|
|
|
|
|
|
FilterStructure.Insert("field", "name");
|
|
|
|
FilterStructure.Insert("type" , "=");
|
|
|
|
FilterStructure.Insert("value", "Vitaly");
|
|
|
|
FilterStructure.Insert("union", "AND");
|
|
|
|
FilterStructure.Insert("raw" , False);
|
|
|
|
|
|
|
|
Filters.Add(FilterStructure);
|
|
|
|
|
|
|
|
Result = OPI_SQLite.UpdateRecords(Table, FieldsStructure, FilterStructure, Base);
|