SQL query:
--
-- Database: `coproj`
--
-- --------------------------------------------------------
--
-- Table structure for table `accounts`
--
CREATE TABLE `accounts` (
`AccountID` varchar( 16 ) NOT NULL default '',
`Password` varchar( 64 ) NOT NULL default '',
`LogonType` int( 8 ) unsigned NOT NULL default '0',
`LogonCount` int( 10 ) unsigned NOT NULL default '0',
`Status` int( 8 ) unsigned default '0',
`Charr` varchar( 16 ) NOT NULL default '',
`AccNr` int( 10 ) unsigned NOT NULL AUTO_INCREMENT ,
`Online` int( 8 ) unsigned NOT NULL default '0',
PRIMARY KEY USING BTREE(
`AccNr`
)
) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =1
MySQL said: Documentation
#1046 - No database selected
It came up with that message when i tried to import my database on

any idea how to fix that?