To delete a database, the best thing to do is login to your mysql DB
directly, ie: mysql -u root -p (the root user is the MySQL root, not the
sytem root) and supply the password at the prompt. Then do:
DROP DATABASE publish;
This will delete it "correctly". Something that I do is put all
On Monday 29 October 2001 07:51 am, you wrote:
> I needed to start over with the work on publish so I deleted the publish
> directory. #rm -R /var/db/mysql/publish.
Um, not that it's PHP-related, but...
You should use "drop database" instead of manually removing the file.
mysql> drop database d
2 matches
Mail list logo