2025-02-11 08:47:01 +03:00
|
|
|
---
|
2025-02-14 23:21:49 +03:00
|
|
|
sidebar_position: 4
|
2025-02-11 08:47:01 +03:00
|
|
|
---
|
|
|
|
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
|
2025-02-12 19:33:53 +03:00
|
|
|
# Get table information
|
|
|
|
Gets information about the table
|
2025-02-11 08:47:01 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
2025-02-12 19:33:53 +03:00
|
|
|
`Function GetTableInformation(Val Table, Val Connection = "") Export`
|
2025-02-11 08:47:01 +03:00
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|
|
|-|-|-|-|-|
|
2025-02-12 19:33:53 +03:00
|
|
|
| Table | --table | String | ✔ | Table name |
|
2025-02-11 08:47:01 +03:00
|
|
|
| Connection | --dbc | String, Arbitrary | ✖ | Connection or connection string |
|
|
|
|
|
|
|
|
|
2025-02-11 14:50:59 +03:00
|
|
|
Returns: Structure Of KeyAndValue - Result of query execution
|
2025-02-11 08:47:01 +03:00
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
|
|
Address = "93.125.42.204";
|
|
|
|
Login = "bayselonarrend";
|
|
|
|
Password = "12we...";
|
2025-02-12 19:33:53 +03:00
|
|
|
Base = "testbase1";
|
2025-02-11 08:47:01 +03:00
|
|
|
|
2025-02-13 21:31:59 +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()
|
2025-02-11 08:47:01 +03:00
|
|
|
ConnectionString = OPI_PostgreSQL.GenerateConnectionString(Address, Base, Login, Password);
|
|
|
|
|
2025-02-12 19:33:53 +03:00
|
|
|
Table = "testtable";
|
2025-02-11 08:47:01 +03:00
|
|
|
|
2025-02-12 19:33:53 +03:00
|
|
|
Result = OPI_PostgreSQL.GetTableInformation(Table, ConnectionString);
|
2025-02-11 08:47:01 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|