CDSSB: Difference between revisions

From T2B Wiki
Jump to navigation Jump to search
m Created page with " === Community Driven Site Status Board === ==== Step 1: Design phase ==== ==== Step 2: Study of needed tools ==== *The backend database will be an sqlite3 database. ..."
 
(No difference)

Latest revision as of 12:28, 26 August 2015

Community Driven Site Status Board

Step 1: Design phase

Step 2: Study of needed tools

sqlite /root/joris/CDSSB/test.db
create table t1 (t1key INTEGER PRIMARY KEY, timeStamp DATE, status TEXT, entryName TEXT, severity INTEGER);
drop table t1

.tables
.schema t1
.dump t1

insert into t1 (timeStamp,status,entryname,severity) values (date('now'),'All is fine','Joris',4);
select * from t1;
/var/www/html/JorisTesting/CDSSB


Template:TracNotice