SVN: toys/stbr/README

vip vip at pld-linux.org
Mon May 14 22:40:59 CEST 2007


Author: vip
Date: Mon May 14 22:40:58 2007
New Revision: 8535

Added:
   toys/stbr/README
Log:
- quick db setup


Added: toys/stbr/README
==============================================================================
--- (empty file)
+++ toys/stbr/README	Mon May 14 22:40:58 2007
@@ -0,0 +1,16 @@
+To setup STBR log database, create sqlite file with basic structure:
+
+$ sqlite stbrlog.db "
+	create table stbr (
+	date datetime primary key not null,
+	sender varchar(100) not null);
+
+	create table application (
+	date datetime not null,
+	spec varchar(100) not null,
+	recipient varchar(100) not null,
+	builder varchar(20) not null,
+	primary key (date,spec));"
+
+And it is now ready to use with TCL script and WWW page.
+


More information about the pld-cvs-commit mailing list