GetColumnNames db tableWhat it does:
returns a list with the column names of the tableDefined 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;