The Final Design Review
Today, we're reviewing the final and only code in the application. It's just that simple. We'll start with the data model.
CREATE TABLE STUFF( COLUMN1 TEXT, COLUMN2 TEXT, COLUMN3 TEXT );
As you can see from the enclosed table design, we have generalized the general triple-store to make it more general …
more ...