You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-29 22:27:42 +02:00
37 lines
710 B
Plaintext
37 lines
710 B
Plaintext
|
|
---
|
||
|
|
sidebar_position: 1
|
||
|
|
---
|
||
|
|
|
||
|
|
import Tabs from '@theme/Tabs';
|
||
|
|
import TabItem from '@theme/TabItem';
|
||
|
|
|
||
|
|
# Create database
|
||
|
|
Creates a database with the specified name
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
`Function CreateDatabase(Val Base, Val Connection = "", Val Tls = "") Export`
|
||
|
|
|
||
|
|
| Parameter | CLI option | Type | Required | Description |
|
||
|
|
|-|-|-|-|-|
|
||
|
|
| Base | --base | String | ✔ | Database name |
|
||
|
|
| Connection | --dbc | String, Arbitrary | ✖ | Connection or connection string |
|
||
|
|
| Tls | --tls | Structure Of KeyAndValue | ✖ | TLS settings, if necessary. See GetTlsSettings |
|
||
|
|
|
||
|
|
|
||
|
|
Returns: Map Of KeyAndValue - Result of query execution
|
||
|
|
|
||
|
|
<br/>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
||
|
|
|
||
|
|
```
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|