highwind / clog

Simple blogging engine for my personal use, written in C. Yes, C.

This URL has Read+Write access

clog / test.db
100644 6 lines (6 sloc) 4.096 kb
1
2
3
4
5
6
SQLite format 3@  @ atableentry_tagentry_tagCREATE TABLE entry_tag
   (entry_id INTEGER REFERENCES entries (id),
tag_id INTEGER REFERENCES tags (id))P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)l;tabletagstagsCREATE TABLE tags
   (id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT,
count INTEGER)