Difference between revisions of "FLDLIST()"

From Lianjapedia
Jump to: navigation, search
Line 20: Line 20:
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Table Basics]]
+
[[Category:Cursor Functions]]
[[Category:Table Basics Functions]]
+

Revision as of 10:52, 4 February 2013

Purpose

Function to return a comma separated list of field names

Syntax

FLDLIST([<workarea | alias>])

See Also

ADESC(), AFIELDS(), DBF(), FIELD(), FIELDNAME(), FILTER(), FLDCOUNT(), INDEXKEY(), NDX(), RTOS()

Description

The FLDLIST() function returns a string containing a comma separated list of field names. The optional <workarea | alias> parameter can be used to operate on the table in the specified workarea number, or with the specified table alias. If the optional <workarea | alias> is not specified, FLDLIST() operates on the currently selected table. If there is no table selected or open with the specified alias name or in the specified workarea, FLDLIST() returns an error.

Example

open database southwind
use customers
fieldList = fldlist()