2025-02-12 19:33:53 +03:00
---
2025-02-14 23:21:49 +03:00
sidebar_position: 10
2025-02-12 19:33:53 +03:00
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Update records
Updates the value of records by selected criteria
`Function UpdateRecords(Val Table, Val ValueStructure, Val Filters = "", Val Connection = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Table | --table | String | ✔ | Table name |
| ValueStructure | --values | Structure Of KeyAndValue | ✔ | Values structure: Key > field, Value > field value |
| Filters | --filter | Array of Structure | ✖ | Filters array. See GetRecordsFilterStrucutre |
| Connection | --dbc | String, Arbitrary | ✖ | Connection or connection string |
Returns: Structure Of KeyAndValue, String - Result of query execution
<br/>
2025-02-15 19:36:59 +03:00
:::tip
2025-02-15 20:40:36 +03:00
Record data is specified as an array of structures of the following type:<br/>`{'Field name 1': {'Type': 'Value'}, 'Field name 2': {'Type': 'Value'},...}`
2025-02-15 19:36:59 +03:00
The list of available types is described on the initial page of the PostgreSQL library documentation
:::
<br/>
2025-02-12 19:33:53 +03:00
```bsl title="1C:Enterprise/OneScript code example"
2025-02-14 23:21:49 +03:00
Address = "93.125.42.204";
Login = "bayselonarrend";
Password = "12we...";
2025-02-15 13:38:30 +03:00
Base = "test_data";
2025-02-12 19:33:53 +03:00
2025-02-14 23:21:49 +03:00
// When using the connection string, a new connection is initialised,
// which will be closed after the function is executed.
// If several operations are performed, it is desirable to use one connection,
// previously created by the CreateConnection function()
ConnectionString = OPI_PostgreSQL.GenerateConnectionString(Address, Base, Login, Password);
2025-02-15 13:38:30 +03:00
Table = "test_data";
2025-02-14 23:21:49 +03:00
FieldsStructure = New Structure;
2025-02-15 13:38:30 +03:00
FieldsStructure.Insert("ip_address", New Structure("VARCHAR", "127.0.0.1"));
2025-02-14 23:21:49 +03:00
Filters = New Array;
FilterStructure = New Structure;
2025-02-15 13:38:30 +03:00
FilterStructure.Insert("field", "gender");
2025-02-14 23:21:49 +03:00
FilterStructure.Insert("type" , "=");
2025-02-15 13:38:30 +03:00
FilterStructure.Insert("value", New Structure("VARCHAR", "Male"));
2025-02-14 23:21:49 +03:00
FilterStructure.Insert("raw" , False);
Filters.Add(FilterStructure);
Result = OPI_PostgreSQl.UpdateRecords(Table, FieldsStructure, FilterStructure, ConnectionString);
2025-02-12 19:33:53 +03:00
```