1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-04 22:14:37 +02:00

48 lines
789 B
Plaintext
Raw Normal View History

2024-12-29 22:28:49 +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"
2024-12-30 17:08:45 +03:00
TFN = GetTempFileName("sqlite");
2024-12-29 22:28:49 +03:00
2024-12-30 17:08:45 +03:00
Connection = OPI_SQLite.CreateConnection(TFN);
Closing = OPI_SQLite.CloseConnection(Connection);
2024-12-29 22:28:49 +03:00
```
2024-12-31 21:45:39 +03:00
```json title="Result"
{
"result": true
}
```