Listing 17.1. Plik tworzenie-pustej-bazy-danych.sql z przykładu 17.1
drop schema if exists names;
create schema names default character set utf8 collate utf8_polish_ci;
grant all on names.* to editor@localhost identified by 'secretPASSWORD';
flush privileges;