MySQL

From TUTOS

Revision as of 07:31, 5 January 2006 by Gero (Talk | contribs)

A free database

http://dev.mysql.com/doc/

In order to enable this database for TUTOS do this:

  • CREATE DATABASE $DBNAME;
  • GRANT ALL PRIVILEGES ON $DBNAME.* TO $DBUSER@$APACHEHOST IDENTIFIED BY '$DBPASSWD';
  • FLUSH PRIVILEGES;

NOTE

There is currently a problem with MySQL 5 which will refuse to work with TUTOS. MySQL 5 does introduce some new keywords which will conflict with fieldnames already used in TUTOS.

--Gero 08:31, 5 January 2006 (CET)