[nonots@ace sqlite]$ sqlite rss
SQLite version 2.8.5
Enter ".help" for instructions
sqlite> 
create table rss_board(
id int not null primary key unique,
title varchar(100),
writer varchar(50),
text text,      
rdate int,
hit int
);
sqlite> insert into rss_board values (0,'ԽԴϴ',' Խ','Ǳ⼺',0,0);

