Recent Topics

1 May 30, 2013 20:20    

Can someone help? I'm switching hosts and my DB won't import in phpMyAdmin. I get the following:

SQL query:

--
-- Table structure for table `evo_antispam`
--
DROP TABLE IF EXISTS `evo_antispam` ;


MySQL said:

#1046 - No database selected

Any ideas? I have multiple databases from multiple blogs and they all throw the same error...

2 May 30, 2013 21:02

Select the database before doing the import. Click on the database name in phpmyadmin, then open the Import page.

3 May 30, 2013 22:05

Yeah, that didn't work but I figured it out. I had to open the DB and insert:

CREATE DATABASE database_name;
USE database_name;

Problem solved!


Form is loading...