Is there a way to make a certain mysql table browsable?
Is there a way to make a certain mysql table browsable?
You mean so that the little red cross doesnt appear when you hover over browse?
Insert some data.
This is our situation and we're happy to be here,
I wouldn't change this place for anything.
--
-- Table structure for table `land`
--
DROP TABLE IF EXISTS `land`;
CREATE TABLE `land` (
`id` int(32) NOT NULL default '0',
`owner` varchar(100) collate latin1_general_ci NOT NULL default '0',
`location` enum('England','Spain','Italy','France','Sweden',' Portugal') collate latin1_general_ci NOT NULL default 'England',
`garage` varchar(100) collate latin1_general_ci NOT NULL default '0',
`house` varchar(100) collate latin1_general_ci NOT NULL default '0',
`security` enum('None','Fence','Guard','Mines','Army') collate latin1_general_ci NOT NULL default 'None',
`amount` varchar(100) collate latin1_general_ci NOT NULL default '5',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
--
-- Dumping data for table `land`
--
LOCK TABLES `land` WRITE;
/*!40000 ALTER TABLE `land` DISABLE KEYS */;
/*!40000 ALTER TABLE `land` ENABLE KEYS */;
UNLOCK TABLES;
That have database info in.
Theres no data in that table, so you dont have anything to browse.
So how would I put data in?
There's an "insert" tab. Or you can execute a SQL query.
Want to hide these adverts? Register an account for free!