yolanda/trunk/README_DATABASE

9 lines
237 B
Text
Raw Normal View History

to get a database execute the following mysql statements:
create database gnutube;
use gnutube;
create table tagcloud (text char(255) not null, count int not null);
fill with some data:
eg.: insert into tagcloud values ('web tv', 68);