NAME
SqliteColumnNameList — Return a Tcl list with the names of the columns of a table.
SYNOPSIS
SqliteColumnNameList TableName
DESCRIPTION
Return Value
A list where each element is a column name.
Arguments
TableNameName of the table to get the column names of.
More Info
Check About Configuration for Database Use for info about how to set up Gen for using database-related commands.

For information regarding exceptions / errors, see here.
EXAMPLES
% RunSqlCreate my_table {id {integer primary key} desc text notes text}
% QQ [SqlInsertStatement my_table {desc 'one' notes 'uno'}]
% SqliteColumnNameList my_table
id desc notes
SEE ALSO
SqliteColumnNameAndTypeList, SqliteColumnType
KEYWORDS
sql