1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-25 22:12:29 +02:00

Доработка документации PG

This commit is contained in:
Anton Titovets
2025-02-16 12:52:26 +03:00
parent fbe12f42bc
commit bb99a80c6a
17 changed files with 52 additions and 342 deletions

View File

@@ -1,40 +0,0 @@
---
sidebar_position: 1
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get list of bases
Gets a list of bases
`Function GetListOfBases(Val ConnectionString) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| ConnectionString | --connect | String | ✔ | Connection string to MongoDB server |
Returns: Structure Of KeyAndValue - serialized JSON response from MongoDB server
<br/>
:::tip
Method in MongoDB documentation: [listDatabases](https://mongodb.com/docs/manual/reference/command/listDatabases/)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
ConnectionString = "mongodb://bayselonarrend:***@127.0.0.1:27017";
Result = OPI_MongoDB.GetListOfBases(ConnectionString);
```

View File

@@ -1,4 +0,0 @@
{
"label": "Database management",
"position": "2"
}