mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-03-25 21:39:21 +02:00
90 lines
2.6 KiB
Plaintext
Vendored
90 lines
2.6 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 9
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Get records
|
|
Gets records from the selected table
|
|
|
|
|
|
|
|
`Function GetRecords(Val Table, Val Fields = "*", Val Filters = "", Val Sort = "", Val Count = "", Val Connection = "") Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| Table | --table | String | ✔ | Table name |
|
|
| Fields | --fields | Array Of String | ✖ | Fields for selection |
|
|
| Filters | --filter | Array of Structure | ✖ | Filters array. See GetRecordsFilterStrucutre |
|
|
| Sort | --order | Structure Of KeyAndValue | ✖ | Sorting: Key > field name, Value > direction (ASC, DESC) |
|
|
| Count | --limit | Number | ✖ | Limiting the number of received strings |
|
|
| Connection | --dbc | String, Arbitrary | ✖ | Connection or connection string |
|
|
|
|
|
|
Returns: Structure Of KeyAndValue, String - Result of query execution
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
Address = "93.125.42.204";
|
|
Login = "bayselonarrend";
|
|
Password = "12we...";
|
|
Base = "testbase1";
|
|
|
|
// 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);
|
|
|
|
// All records without filters
|
|
|
|
Table = "testtable";
|
|
Result = OPI_PostgreSQL.GetRecords(Table, , , , , ConnectionString);
|
|
|
|
// Filter, selected fields, limit and sorting
|
|
|
|
ConnectionString = OPI_PostgreSQL.GenerateConnectionString(Address, "test_data", Login, Password);
|
|
|
|
Table = "test_data";
|
|
|
|
Fields = New Array;
|
|
Fields.Add("first_name");
|
|
Fields.Add("last_name");
|
|
Fields.Add("email");
|
|
|
|
Filters = New Array;
|
|
|
|
FilterStructure1 = New Structure;
|
|
|
|
FilterStructure1.Insert("field", "gender");
|
|
FilterStructure1.Insert("type" , "=");
|
|
FilterStructure1.Insert("value", "Male");
|
|
FilterStructure1.Insert("union", "AND");
|
|
FilterStructure1.Insert("raw" , False);
|
|
|
|
FilterStructure2 = New Structure;
|
|
|
|
FilterStructure2.Insert("field", "id");
|
|
FilterStructure2.Insert("type" , "BETWEEN");
|
|
FilterStructure2.Insert("value", "20 AND 50");
|
|
FilterStructure2.Insert("raw" , True);
|
|
|
|
Filters.Add(FilterStructure1);
|
|
Filters.Add(FilterStructure2);
|
|
|
|
Sort = New Structure("ip_address", "DESC");
|
|
Count = 5;
|
|
|
|
Result = OPI_PostgreSQL.GetRecords(Table, Fields, Filters, Sort, Count, ConnectionString);
|
|
```
|
|
|
|
|
|
|
|
|
|
|