NAME
SqliteColumnType — Get the data type for the column in the table.
SYNOPSIS
SqliteColumnType TableName ColumnName
DESCRIPTION
Return Value
Either text, int, real, or blob.
Arguments
TableNameName of table the column is in.
ColumnNameName of column to get the type 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'}]
% SqliteColumnType my_table desc
text
SEE ALSO
SqliteColumnNameAndTypeList, SqliteColumnNameList
KEYWORDS
sql