Back to FabImage Library website
You are here: Start » Function Reference » Hardware Support » MSSQL » MSSQL_Read_Deprecated
Header: | ThirdPartySdk.h |
---|---|
Namespace: | fil |
Module: | ThirdParty |
Reads a value from the database.
Syntax
void fil::MSSQL_Read_Deprecated ( MSSQL_State& ioState, ftl::Optional<const ftl::String&> inConnectionString, const ftl::String& inTableName, const ftl::String& inColumnName, const ftl::String& inQueriedColumn, const ftl::String& inQueryValue, bool inIncludeColumnTitles, ftl::Array<ftl::Array<ftl::String>>& outReadData )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
ioState | MSSQL_State& | Object used to maintain state of the function. | |
![]() |
inConnectionString | Optional<const String&> | NIL | Connection string. |
![]() |
inTableName | const String& | Name of the table to access. | |
![]() |
inColumnName | const String& | Which column will be checked. | |
![]() |
inQueriedColumn | const String& | Column name to compare. | |
![]() |
inQueryValue | const String& | Value to compare. | |
![]() |
inIncludeColumnTitles | bool | False | Whether or not to include column names in the output data. |
![]() |
outReadData | Array<Array<String>>& | Data read as strings. |