import - Error in importing database in MySQL -


i'm trying import database in mysql kept on showing error saying 'no database selected'. there wrong xampp? i've installed xampp v3.0.12.. know how solve problem? don't know do. :( need import badly.this reason why can't log in wordpress. dany appreciated! thanks!

error sql query:

--

-- database: eucincor_psuccessdb.sql

-- --------------------------------------------------------

-- table structure table wp_additional_attendees

create table if not exists  `wp_additional_attendees` (   `id` int( 11 ) unsigned not null auto_increment ,  `attendee_id` int( 11 ) not null default  '0',  `x_attedee_name` varchar( 45 ) default null ,  `x_attendee_email` varchar( 45 ) default null , primary key (  `id` ) ) engine = myisam default charset = latin1 auto_increment =1; 

mysql said:

1046 - no database selected

you might have forgotten use database. dump file not contain the

create database eucincor_psuccessdb use eucincor_psuccessdb 

either add manually in eucincor_psuccessdb.sql file or type these commands before importing database.

hope worked!


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -