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
|
|
|
|
}
|
|
|
|
```
|