Theses databases are part of the book

  MySQL 5 by Michael Kofler

  german edition:  Addison-Wesley 2005
  english edition: apress 2005
  french edition:  eyrolles 2005

The *.sql files contain the sample databases. To import a database,
use the two following commands (replace mylibrary by the name of the
database):

  > mysqladmin -u root -p create mylibrary
  Enter password: xxxxx
  > mysql -u root -p mylibrary < mylibrary.sql
  Enter password: xxxxx

test_vote.sql      chapter 3
exceptions.sql     chapter 8-10
mylibrary.sql      chapter 8-10, 12, 13, 14
mylibraryutf8.sql  (unicode version of mylibrary.sql)
myforum.sql        chapter 8
bigvote.sql        chapter 10 (bigger version of test_vote.sql)

The import*.txt files allow you to test various text import commands (see
chapter 12).

(c) 2005 Michael Kofler
