/*
MySQL Data Transfer
Source Host: localhost
Source Database: marias
Target Host: localhost
Target Database: marias
Date: 4/6/2006 4:15:25 AM
*/
-- ----------------------------
-- Table structure for tblcategory
-- ----------------------------
CREATE TABLE `tblcategory` (
`Cat_ID` int(11) NOT NULL auto_increment,
`Cat_Parent_ID` int(11) NOT NULL default '0',
`Cat_Name` varchar(255) NOT NULL default '',
`Cat_Desc` text,
`Cat_Thumbnail` varchar(255) NOT NULL default '0',
`Cat_Image` varchar(255) NOT NULL default '0',
`Cat_Status` int(1) NOT NULL default '1',
PRIMARY KEY (`Cat_ID`)
) TYPE=MyISAM;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `tblcategory` VALUES ('47', '32', 'asf\"\'fqw\'e;\'al\';k', 'sfht', '\' or \'\'=\'', 'None', '1');
INSERT INTO `tblcategory` VALUES ('48', '32', 'asf\"\'fqw\'e;\'al\';k', 'sfht', '\' or \'\'=\'', 'None', '1');
|