So the command I normally use to get a database sent to another server is: mysqldump -u user -p --add-drop-tables database *file*
But I always have to go into the file and add a line at the top: use database;
So that I use the file to import to a different server. Is there a flag in mysqldump to automatically add the use database?