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.
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.
Click below to sign up and get $100 of credit to try our products over 60 days!
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:
Cheers