MSSQL_Read
Reads a value from the database.
Syntax
C++
Python
def MSSQL_Read( state: MSSQL_State, inConnectionString: str, inTableName: str, inColumnName: str, inQueriedColumn: str, inQueryValue: str, /, *, inIncludeColumnTitles: bool = False ) -> outReadData: list[ list[str] ]
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
ioState | MSSQL_State | ||
![]() |
inConnectionString | str | Connection string. | |
![]() |
inTableName | str | Name of the table to access. | |
![]() |
inColumnName | str | Which column will be checked. | |
![]() |
inQueriedColumn | str | Column name to compare. | |
![]() |
inQueryValue | str | Value to compare. | |
![]() |
inIncludeColumnTitles | bool | False | Whether or not to include column names in the output data. |
![]() |
outReadData | list[ list[str] ] | Data read as strings. |



