yolanda/trunk/README_DATABASE
josch c700555ef8 howto create the databse
git-svn-id: http://yolanda.mister-muffin.de/svn@7 7eef14d0-6ed0-489d-bf55-20463b2d70db
2007-10-10 09:05:57 +00:00

8 lines
237 B
Text

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);