ibec_ds_FieldName
Returns the name of specified field.
Syntax
function ibec_ds_FieldName(Dataset : variant; FieldIndex : integer) : variant;
Example
execute ibeblock returns (FieldName varchar(31), FieldType varchar(100)) as begin select * from rdb$fields where (1 = 0) as dataset RdbFields; iCount = ibec_ds_FieldCount(RdbFields); i = 0; while (i < iCount) do begin FieldName = ibec_ds_FieldName(RdbFields, i); FieldType = ibec_ds_FieldTypeN(RdbFields, i); suspend; i = i + 1; end; close dataset RdbFields; end
See also:
ibec_ds_FieldType
ibec_ds_FieldTypeN
back to top of page
<< ibec_ds_FieldCount | IBEBlock | ibec_ds_FieldType >>