Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 12.1   12.2   12.3   12.4   12.5   13.0   13.1   13.2   13.3   13.4    Statistic    FMM    Blog  

SQL.GetFieldValueList

Queries list of field values.

Component Version macOS Windows Linux Server iOS SDK
SQL 5.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "SQL.GetFieldValueList"; Command )   More

Parameters

Parameter Description Example
Command The command reference number gained with SQL.NewCommand. $Command

Result

Returns list or error.

Description

Queries list of field values.
If value contains a new line or return character, we replace it with \n or \r.

Examples

Create a command, fill parameters and query names and values list:

#Create select
Set Variable [$Command; Value:MBS("SQL.NewCommand"; $Connection; "SELECT * FROM Test")]
#Run it
Set Variable [$result; Value:MBS("SQL.Execute"; $Command)]
#get first row of result
Set Variable [$result; Value:MBS("SQL.FetchNext"; $Command)]
# Now query field names
Set Variable [$FieldNames; Value:MBS("SQL.GetFieldNameList"; $Command)]
# and field values of first row
Set Variable [$FieldValues; Value:MBS("SQL.GetFieldValueList"; $Command)]

See also

Release notes

Example Databases

Blog Entries

This function is free to use.

Created 8th April 2015, last changed 8th April 2015


SQL.GetFieldValue - SQL.GetFieldsAsJSON

💬 Ask a question or report a problem