
Originally Posted by
skipy
I use MSQL 6 ! i hawe bad english!! what is query??
Please refer to this topic http://forum.ragezone.com/f525/web-release-508402/
Open your navicat...Open your RO2 database.. Go to your queries and press new queries then paste this in
Code:
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for news
-- ----------------------------
DROP TABLE IF EXISTS `news`;
CREATE TABLE `news` (
`ID` int(10) NOT NULL AUTO_INCREMENT,
`date` date NOT NULL,
`desc` varchar(32) NOT NULL,
`news` blob NOT NULL,
`headline` varchar(32) NOT NULL,
`postedby` varchar(32) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records
-- ----------------------------
And Run Your New Made Queries... There will be a new table in your tables named "News" ...hope that works for u