Report this

What is the reason for this report?

My website issues a SQLSTATE[HY000] [1049] Unknown database 'xxxxxx' even after I have imported the database.

Posted on December 31, 2018

I am new to digital ocean, but have recently uploaded a website using the LAMP stack. The website is working fine, however I have an html form on a page that sends the data to a MySQL database. I imported the the database following this tutorial “How to Import and Export Databases in MySQL or MariaDB (https://www.digitalocean.com/community/tutorials/how-to-import-and-export-databases-in-mysql-or-mariadb)”.

When I check for the database in the MySQL interface in terminal through “SHOW DATABASES;”, I see that the database has been imported. I checked phpmyadmin and see that the tables have all been correctly configured. The error still occurs and it seems like my website/droplet is still unknown issuing the SQLSTATE[HY000] [1049] Unknown database ‘xxxxxx’ error.

I use a PHP connection via PDO if that helps.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Are you certain the database mentioned in the error line ‘xxxxxx’ exists? Meaning make sure this DB (‘xxxxxx’) isn’t the name of the old DB on the old server. If that’s the case, try logging in to the DB from the command line using the ‘mysql’ binary like this:

mysql -u db_user -p db_name

Cheers

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.