2025-02-12 19:33:53 +03:00
|
|
|
---
|
|
|
|
sidebar_position: 2
|
|
|
|
---
|
|
|
|
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
|
|
|
|
# Close connection
|
|
|
|
Explicitly closes the passed connection
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
`Function CloseConnection(Val Connection) Export`
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|
|
|-|-|-|-|-|
|
|
|
|
| Connection | - | Arbitrary | ✔ | AddIn object with open connection |
|
|
|
|
|
|
|
|
|
|
|
|
Returns: Structure Of KeyAndValue - Result of connection termination
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
:::caution
|
|
|
|
**NOCLI:** this method is not available in CLI version
|
|
|
|
:::
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
2025-02-17 17:16:27 +03:00
|
|
|
Address = "127.0.0.1";
|
2025-02-13 21:31:59 +03:00
|
|
|
Login = "bayselonarrend";
|
|
|
|
Password = "12we...";
|
|
|
|
Base = "postgres";
|
|
|
|
|
|
|
|
ConnectionString = OPI_PostgreSQL.GenerateConnectionString(Address, Base, Login, Password);
|
|
|
|
Connection = OPI_PostgreSQL.CreateConnection(ConnectionString);
|
|
|
|
Result = OPI_PostgreSQL.CloseConnection(Connection);
|
2025-02-12 19:33:53 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|