2024-12-11 09:21:35 +03:00
|
|
|
---
|
|
|
|
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/>
|
|
|
|
|
|
|
|
|
2024-12-16 19:38:57 +03:00
|
|
|
|
2024-12-11 09:21:35 +03:00
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
2024-12-11 15:59:12 +03:00
|
|
|
ConnectionString = "mongodb://bayselonarrend:***@127.0.0.1:27017";
|
2024-12-11 09:21:35 +03:00
|
|
|
|
|
|
|
Result = OPI_MongoDB.GetListOfBases(ConnectionString);
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|