<- Back to MMQuery function list
MMQuery_GetRecordData
- Description
Note: This function is only available in FileMaker Pro 11 and above.
When using the new MMQuery_ExecuteSQLEx function or the modified MMQuery_FindRecords function, you can optionally specify that the results be stored internally in the plug-in. This function is used to retrieve those results. The first parameter is the Row or Record number of the result to look in. The second parameter is the Column or Field number of the result to look in.- Return Type
- Varies
- Format
- MMQuery_GetRecordData ( Row ; Column )
- Required Parameters
- Row
The Row of Record Data to return. Note: The first Row is at position 0 (zero).
- Column
The Column of Record Data to return. Note: The first Column is at position 0 (zero).
- Row
- Related Items
- MMQuery_ExecuteSQLEx, MMQuery_FindRecords, MMQuery_GetRecordDataColumnCount, MMQuery_GetRecordDataRowCount
- Example
Code:
MMQuery_GetRecordData( 0 ; 4 )Result:
Returns the value of the field in the first record of results in the 4th field.