mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-03-29 21:57:16 +02:00
47 lines
951 B
Plaintext
Vendored
47 lines
951 B
Plaintext
Vendored
---
|
|
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"
|
|
Address = "127.0.0.1";
|
|
Login = "bayselonarrend";
|
|
Password = "12we...";
|
|
Base = "postgres";
|
|
|
|
ConnectionString = OPI_PostgreSQL.GenerateConnectionString(Address, Base, Login, Password);
|
|
Connection = OPI_PostgreSQL.CreateConnection(ConnectionString);
|
|
Result = OPI_PostgreSQL.CloseConnection(Connection);
|
|
```
|
|
|
|
|
|
|
|
|
|
|