1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00
Files
OpenIntegrations/docs/en/md/PostgreSQL/Orm/Create-database.mdx

83 lines
2.4 KiB
Plaintext
Raw Normal View History

2025-02-11 08:47:01 +03:00
---
sidebar_position: 1
2025-05-05 11:15:20 +03:00
description: Create database and other functions to work with PostgreSQL in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
2025-05-05 09:49:19 +03:00
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, PostgreSQL]
2025-02-11 08:47:01 +03:00
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Create database
Creates a database with the specified name
2025-03-11 21:09:03 +03:00
`Function CreateDatabase(Val Base, Val Connection = "", Val Tls = "") Export`
2025-02-11 08:47:01 +03:00
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Base | --base | String | ✔ | Database name |
| Connection | --dbc | String, Arbitrary | ✖ | Connection or connection string |
2025-03-11 21:09:03 +03:00
| Tls | --tls | Structure Of KeyAndValue | ✖ | TLS settings, if necessary. See GetTlsSettings |
2025-02-11 08:47:01 +03:00
2025-02-17 17:16:27 +03:00
Returns: Map Of KeyAndValue - Result of query execution
2025-02-11 08:47:01 +03:00
<br/>
```bsl title="1C:Enterprise/OneScript code example"
2025-06-29 14:35:33 +03:00
Address = "127.0.0.1";
2025-02-11 08:47:01 +03:00
Login = "bayselonarrend";
2025-06-29 14:35:33 +03:00
Password = "12we...";
2025-02-11 08:47:01 +03:00
Base = "postgres";
2025-09-01 14:51:24 +03:00
TLS = True;
Port = 5432;
ConnectionString = OPI_PostgreSQL.GenerateConnectionString(Address, Base, Login, Password, Port);
If TLS Then
TLSSettings = OPI_PostgreSQL.GetTLSSettings(True);
Else
TLSSettings = Undefined;
EndIf;
2025-02-11 08:47:01 +03:00
Base = "testbase1";
2025-02-15 22:58:22 +03:00
// When using the connection string, a new connection is initialised,
// which will be closed after the function is executed.
// If several operations are performed, it is desirable to use one connection,
// previously created by the CreateConnection function()
2025-09-01 14:51:24 +03:00
Result = OPI_PostgreSQL.CreateDatabase(Base, ConnectionString, TLSSettings);
2025-02-11 08:47:01 +03:00
```
2025-02-18 14:08:09 +03:00
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint postgres CreateDatabase \
2025-09-16 09:07:33 +03:00
--base ""testbase2"" \
2025-07-05 18:56:59 +03:00
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/" \
2025-09-16 09:07:33 +03:00
--tls ""/tmp/iq25lycc.ipe.json""
2025-02-18 14:08:09 +03:00
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint postgres CreateDatabase ^
2025-09-16 09:07:33 +03:00
--base ""testbase2"" ^
2025-07-05 18:56:59 +03:00
--dbc "postgresql://bayselonarrend:***@127.0.0.1:5432/" ^
2025-09-16 09:07:33 +03:00
--tls ""/tmp/iq25lycc.ipe.json""
2025-02-18 14:08:09 +03:00
```
</TabItem>
</Tabs>
2025-06-17 16:20:59 +03:00
```json title="Result"
{
"result": true
}
```