1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-02 22:05:37 +02:00

44 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-12-29 17:57:09 +03:00
---
sidebar_position: 2
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Execute SQL query
Executes an arbitrary SQL query
`Function ExecuteSQLQuery(Val QueryText, Val Parameters = "", Val ForceResult = False,Val Connection = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| QueryText | --sql | String | ✔ | Database query text |
| Parameters | --params | Array Of Arbitrary | ✖ | Array of positional parameters of the request |
| ForceResult | --force | Boolean | ✖ | Includes an attempt to retrieve the result, even for nonSELECT queries |
| Connection | --db | String | ✖ | Existing connection or path to the base. In memory, if not filled |
Returns: Structure Of KeyAndValue - Result of query execution
<br/>
:::tip
Available parameter types: String, Number, Date, Boolean, BinaryData
Without specifying the `ForcifyResult` flag, result data is returned only for queries beginning with `SELECT` keyword For other queries, result:true or false with error text is returned
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
```