I know only one way to select a database and that's through php.
Is there an SQL command that tells it to select a database?
here's the sql file btw
Code: Select all
--
-- Table structure for table `countries`
--
CREATE TABLE `countries` (
`id` int(6) NOT NULL AUTO_INCREMENT,
`value` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=243 ;
--
-- Dumping data for table `countries`
--
INSERT INTO `countries` VALUES (1, 'Afghanistan');
INSERT INTO `countries` VALUES (2, 'Aringland Islands');
INSERT INTO `countries` VALUES (3, 'Albania');
INSERT INTO `countries` VALUES (4, 'Algeria');
INSERT INTO `countries` VALUES (5, 'American Samoa');
INSERT INTO `countries` VALUES (6, 'Andorra');