Go to the first, previous, next, last section, table of contents.
Describe all the existing catalogs.
create table catalog (
#
# Table management information
#
rowid int autoincrement,
created datetime not null,
modified timestamp not null,
#
# Name of the catalog
#
name varchar(32) not null,
#
# Name of the table whose records are cataloged
#
tablename varchar(60) not null,
#
# Navigation scheme
#
navigation enum ('alpha', 'theme', 'date') default 'theme',
#
# State information
#
info set ('hideempty'),
#
# (alpha, date only) last update time
#
updated datetime,
#
# Order clause
#
corder varchar(128),
#
# Where clause
#
cwhere varchar(128),
#
# (alpha, date only) name of the field for sorting
#
fieldname varchar(60),
#
# (theme only) rowid of the root in catalog_category_<name>
#
root int not null,
#
# (theme only) full path name of the location to dump pages
#
dump varchar(255),
#
# (theme only) the location from which the dumped pages will be accessed
#
dumplocation varchar(255),
unique catalog1 (rowid),
unique catalog2 (name)
)
Go to the first, previous, next, last section, table of contents.