sqlite> .tables
files journal places things urls
images people settings times
sqlite> .dump
BEGIN TRANSACTION;
CREATE TABLE journal(title Text, type Text, date date,
time time, entry blob, artnum Integer, realm Text);
CREATE TABLE settings(parameter text, value Text);
CREATE TABLE people(realm Text, artnum Integer, person Text);
CREATE TABLE places(realm Text, artnum integer, place Text);
CREATE TABLE things(realm Text, artnum Integer, thing Text);
CREATE TABLE times(realm text, artnum Integer, time Text);
CREATE TABLE images(realm Text, artnum Integer, tag Text, file blob);
CREATE TABLE urls(realm Text, artnum Integer, tag Text);
CREATE TABLE files(realm Text, artnum Integer, tag Text, file Blob);
COMMIT;
sqlite> .quit
srv-5:~/sqlite/sqlite-3.3.7 usr4$
|