You've already forked OpenIntegrations
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:
@@ -43,4 +43,8 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
|
||||
|
||||
```json title="Result"
|
||||
{
|
||||
"result": true
|
||||
}
|
||||
```
|
||||
|
||||
@@ -57,4 +57,6 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
|
||||
|
||||
```json title="Result"
|
||||
NOT JSON: AddIn.OPI_MySQL.Main
|
||||
```
|
||||
|
||||
@@ -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
|
||||
}
|
||||
```
|
||||
|
||||
@@ -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/"
|
||||
```
|
||||
|
||||
@@ -46,4 +46,6 @@ import TabItem from '@theme/TabItem';
|
||||
|
||||
|
||||
|
||||
|
||||
```json title="Result"
|
||||
true
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user