2024-12-29 17:57:09 +03:00
---
2024-12-29 22:28:49 +03:00
sidebar_position: 3
2024-12-29 17:57:09 +03:00
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Execute SQL query
Executes an arbitrary SQL query
2024-12-29 22:28:49 +03:00
`Function ExecuteSQLQuery(Val QueryText, Val Parameters = "", Val ForceResult = False, Val Connection = "") Export`
2024-12-29 17:57:09 +03:00
| 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 |
2024-12-29 22:28:49 +03:00
| Connection | --db | String, Arbitrary | ✖ | Existing connection or path to the base. In memory, if not filled |
2024-12-29 17:57:09 +03:00
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"
```