mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-04-27 12:32:33 +02:00
45 lines
913 B
Plaintext
45 lines
913 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 = "") Export`
|
||
|
|
||
|
| Parameter | CLI option | Type | Required | Description |
|
||
|
|-|-|-|-|-|
|
||
|
| Base | --base | String | ✔ | Database name |
|
||
|
| Connection | --dbc | String, Arbitrary | ✖ | Connection or connection string |
|
||
|
|
||
|
|
||
|
Returns: Structure Of KeyAndValue, String - Result of query execution
|
||
|
|
||
|
<br/>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
```bsl title="1C:Enterprise/OneScript code example"
|
||
|
Address = "93.125.42.204";
|
||
|
Login = "bayselonarrend";
|
||
|
Password = "12we...";
|
||
|
Base = "postgres";
|
||
|
|
||
|
ConnectionString = OPI_PostgreSQL.GenerateConnectionString(Address, Base, Login, Password);
|
||
|
|
||
|
Base = "testbase1";
|
||
|
|
||
|
Result = OPI_PostgreSQL.CreateDatabase(Base, ConnectionString);
|
||
|
```
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|