NAME
SqliteTableExists — Determine if a table exists in the current database.
SYNOPSIS
SqliteTableExists TableName
DESCRIPTION
Return Value
1 If table exists.
0 If it does not.
Arguments
TableNameName of table to check for.
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}
% SqliteTableExists my_table
1
SEE ALSO
SqlRecordExists, SqliteColumnNameAndTypeList
KEYWORDS
sql