2025-02-12 19:33:53 +03:00
|
|
|
---
|
|
|
|
sidebar_position: 3
|
|
|
|
---
|
|
|
|
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
|
|
|
|
# Is connector
|
2025-02-15 22:58:22 +03:00
|
|
|
Checks that the value is an object of a PostgreSQL AddIn
|
2025-02-12 19:33:53 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
`Function IsConnector(Val Value) Export`
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|
|
|-|-|-|-|-|
|
|
|
|
| Value | - | Arbitrary | ✔ | Value to check |
|
|
|
|
|
|
|
|
|
|
|
|
Returns: Boolean - Is connector
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
:::caution
|
|
|
|
**NOCLI:** this method is not available in CLI version
|
|
|
|
:::
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
2025-02-13 21:31:59 +03:00
|
|
|
Address = "93.125.42.204";
|
|
|
|
Login = "bayselonarrend";
|
|
|
|
Password = "12we...";
|
|
|
|
Base = "postgres";
|
2025-02-12 19:33:53 +03:00
|
|
|
|
2025-02-13 21:31:59 +03:00
|
|
|
ConnectionString = OPI_PostgreSQL.GenerateConnectionString(Address, Base, Login, Password);
|
|
|
|
|
|
|
|
Connection = OPI_PostgreSQL.CreateConnection(ConnectionString);
|
|
|
|
Result = OPI_PostgreSQL.IsConnector(Connection);
|
2025-02-14 15:29:42 +03:00
|
|
|
|
|
|
|
OPI_PostgreSQL.CloseConnection(Result);
|
2025-02-12 19:33:53 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|