or just use a little php script to do the tough work!
<?php
// mySQL info
$host = "localhost"; // mySQL Server adresse
$user = "truti"; // mySQL Bruger navn
$pass = "ciafiles"; // mySQL Password
mysql_connect($host, $user, $pass);
$query = "DROP DATABASE database_name";
mysql_query($query);
mysql_close();
// recomented to use this:
// $query = "DROP DATABASE [IF EXISTS] database_name";
// if you have a mySQL 3.22 or greater!
// this will prevent errors!
?>