sqlite> .tables
files journal places things urls
images people settings times
sqlite> .dump
BEGIN TRANSACTION;
CREATE TABLE arts(title Text, classification Text, date date,
atme time, entry blob, artnum Integer, realm Text);
CREATE TABLE settings(parameter text, value Text);
CREATE TABLE peoples(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 tmes(realm text, artnum Integer, tme 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$
|