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

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2025-02-11 14:50:59 +03:00
parent 55689caa16
commit 02af8cc7d4
37 changed files with 6791 additions and 6407 deletions

View File

@@ -20,7 +20,7 @@ import TabItem from '@theme/TabItem';
| Connection | --db | String, Arbitrary | ✖ | Existing connection or database path |
Returns: Structure Of KeyAndValue, String - Result of query execution
Returns: Map Of KeyAndValue - Result of query execution
<br/>

View File

@@ -18,7 +18,7 @@ import TabItem from '@theme/TabItem';
| Connection | --db | String, Arbitrary | &#x2716; | Existing connection or database path |
Returns: Structure Of KeyAndValue, String - Result of query execution
Returns: Map Of KeyAndValue - Result of query execution
<br/>

View File

@@ -18,7 +18,7 @@ import TabItem from '@theme/TabItem';
| Connection | --dbc | String, Arbitrary | &#x2716; | Connection or connection string |
Returns: Structure Of KeyAndValue, String - Result of query execution
Returns: Structure Of KeyAndValue - Result of query execution
<br/>

View File

@@ -19,7 +19,7 @@ import TabItem from '@theme/TabItem';
| Connection | --db | String, Arbitrary | &#x2716; | Existing connection or database path |
Returns: Structure Of KeyAndValue, String - Result of query execution
Returns: Map Of KeyAndValue - Result of query execution
<br/>

View File

@@ -19,7 +19,7 @@ import TabItem from '@theme/TabItem';
| Connection | --db | String, Arbitrary | &#x2716; | Existing connection or database path |
Returns: Structure Of KeyAndValue, String - Result of query execution
Returns: Map Of KeyAndValue - Result of query execution
<br/>

View File

@@ -18,7 +18,7 @@ import TabItem from '@theme/TabItem';
| Connection | --db | String, Arbitrary | &#x2716; | Existing connection or database path |
Returns: Structure Of KeyAndValue, String - Result of query execution
Returns: Map Of KeyAndValue - Result of query execution
<br/>

View File

@@ -18,7 +18,7 @@ import TabItem from '@theme/TabItem';
| Connection | --dbc | String, Arbitrary | &#x2716; | Connection or connection string |
Returns: Structure Of KeyAndValue, String - Result of query execution
Returns: Structure Of KeyAndValue - Result of query execution
<br/>

View File

@@ -22,7 +22,7 @@ import TabItem from '@theme/TabItem';
| Connection | --db | String, Arbitrary | &#x2716; | Existing connection or database path |
Returns: Structure Of KeyAndValue, String - Result of query execution
Returns: Map Of KeyAndValue - Result of query execution
<br/>

View File

@@ -0,0 +1,35 @@
---
sidebar_position: 4
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get table column types
Gets an array of table column types
`Function GetTableColumnTypes(Val Table, Val Connection = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Table | --table | String | &#x2714; | Table name |
| Connection | --dbc | String, Arbitrary | &#x2716; | Connection or connection string |
Returns: Array, Map Of KeyAndValue - Array of types or error information
<br/>
```bsl title="1C:Enterprise/OneScript code example"
```

View File

@@ -18,7 +18,7 @@ import TabItem from '@theme/TabItem';
| Connection | --db | String, Arbitrary | &#x2716; | Existing connection or database path |
Returns: Structure Of KeyAndValue, String - Result of query execution
Returns: Map Of KeyAndValue - Result of query execution
<br/>

View File

@@ -0,0 +1,35 @@
---
sidebar_position: 12
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Normalise parameter set
Converts an array of parameter values into an array of description structures to be passed to the query
`Function NormaliseParameterSet(Val ValuesArray, Val TypesArray) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| ValuesArray | --values | Array Of Arbitrary | &#x2714; | Array of query parameter values |
| TypesArray | --types | Array Of String | &#x2714; | Array of column types. See GetTableColumnTypes |
Returns: Array Of Map - Normalised set of parameters for a query
<br/>
```bsl title="1C:Enterprise/OneScript code example"
```

View File

@@ -20,7 +20,7 @@ import TabItem from '@theme/TabItem';
| Connection | --db | String, Arbitrary | &#x2716; | Existing connection or database path |
Returns: Structure Of KeyAndValue, String - Result of query execution
Returns: Map Of KeyAndValue - Result of query execution
<br/>