1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2025-04-06 17:14:16 +03:00
parent 7558d9dcbe
commit 2ec373a899
1642 changed files with 11984 additions and 11337 deletions

View File

@@ -43,4 +43,8 @@ import TabItem from '@theme/TabItem';
```json title="Result"
{
"result": true
}
```

View File

@@ -57,4 +57,6 @@ import TabItem from '@theme/TabItem';
```json title="Result"
NOT JSON: AddIn.OPI_MySQL.Main
```

View File

@@ -97,6 +97,42 @@ Without specifying the `ForcifyResult` flag, result data is returned only for qu
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint mysql ExecuteSQLQuery \
--sql "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/TEST_DATA2.sql" \
--dbc "mysql://bayselonarrend:***@127.0.0.1:3306/"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint mysql ExecuteSQLQuery ^
--sql "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/TEST_DATA2.sql" ^
--dbc "mysql://bayselonarrend:***@127.0.0.1:3306/"
```
</TabItem>
</Tabs>
```json title="Result"
{
"data": [
{
"age": 25,
"amount": 1000.11999511719,
"data": {
"BYTES": "Base64"
},
"date": "2025-04-06T03:00:00+03:00",
"name": "Vitaly",
"salary": 1000.12,
"time": "1970-01-01T16:53:40+03:00",
"type": 1
}
],
"result": true
}
```

View File

@@ -38,6 +38,30 @@ import TabItem from '@theme/TabItem';
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint mysql GenerateConnectionString \
--addr "127.0.0.1" \
--db "" \
--login "bayselonarrend" \
--pass "***"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint mysql GenerateConnectionString ^
--addr "127.0.0.1" ^
--db "" ^
--login "bayselonarrend" ^
--pass "***"
```
</TabItem>
</Tabs>
```json title="Result"
"mysql://bayselonarrend:***@127.0.0.1:3306/"
```

View File

@@ -46,4 +46,6 @@ import TabItem from '@theme/TabItem';
```json title="Result"
true
```