GetColumnNames

one of the documented procedures in this installation of the ACS
Usage:
GetColumnNames   db   table
What it does:
returns a list with the column names of the table
Defined in: /web/philip/packages/acs-core/utilities-procs.tcl

Source code:


    #returns a list with the column names of the table
    set size [ns_column count $db $table]
    set i 0
    set column_names ""
    while {$i<$size} {
	lappend column_names [ns_column name $db $table $i]
	incr i
    }
    return $column_names;


philg@mit.edu