MSSQL_Query
Sends a query to the database.
Syntax
C++
Python
def MSSQL_Query( state: MSSQL_State, inConnectionString: str, inQuery: str, /, *, inIncludeColumnTitles: bool = False ) -> outData: list[ list[str] ]
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
ioState | MSSQL_State | ||
![]() |
inConnectionString | str | Connection string. | |
![]() |
inQuery | str | SQL Query. | |
![]() |
inIncludeColumnTitles | bool | False | Whether or not to include column names in the output data. |
![]() |
outData | list[ list[str] ] | Data read as strings. |



