NAME
ShowTable — Print the contents of a table.
SYNOPSIS
ShowTable TableName ?ColumnNames?
DESCRIPTION
Return Value
None.
Arguments
TableNameName of table to show.
ColumnNamesOptional. Names of columns to show. If not set, will use the names found in the master table.
More Info
Note that this command will currently only work if you have a sqlite database connection set up.

If you have an empty table then it will still print the headers.

Currently, there is no option for suppressing table headers.


For information regarding exceptions / errors, see here.
EXAMPLES
% CreateSqliteTable my_table {desc notes}
% RunSqlEnter my_table {desc first notes 1-2-3}
% RunSqlEnter my_table {desc second notes 4-5-6}
% ShowTable my_table
desc | notes
first | 1-2-3
second | 4-5-6
SEE ALSO
PrintList
KEYWORDS
database, print, sql