SqliteColumnNameList — Return a Tcl list with the names of the columns of a table.
A list where each element is a column name.
TableName | Name of the table to get the column names of. |
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.
% 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