| Database Toolbox User's Guide | Search  Help Desk |
| columnnames | Examples See Also |
Get names of columns in fetched data set
Syntax
colnames= columnnames(cursor)
Description
colnames = columnnames(cursor)
gets the column names in the fetched data set, cursor. The column names are returned as a single string vector.
Examples
The fetched data set,cursorA, contains three columns having the names shown:
colsA = columnnames(cursorA)
colsA =
'Address', 'City', 'Country'
See Also
attr, cols, fetch, width