Present I use PHP Runner 5.1 and tried to create tables to mysql server for hosting database.
Problem1: when I started create PHP Runner database and connect to mysql service it does not work which pop up message related to table "clcategory". The message error is:
Error creating tables:
Error excuting query
DROP command denied to user 'CbnrmLI_dbms'@'2002.79.27.170' for table 'clcategory'
DROP TABLE IF EXISTS 'clcategory'
==============================
Problem 2: I have created on localhost machine it works normally but than I import this database to mysql service and sitll can't which showing message as following:
SQL query:
CREATE TABLE `CbnrmLI_gb`.`clcategory` (
`CategoryName` VARCHAR( 50 ) NULL ,
`CategoryID` INT( 11 ) NOT NULL AUTO_INCREMENT ,
PRIMARY KEY ( `CategoryID` )
) ENGINE = MYISAM
MySQL said: Documentation
1142 - CREATE command denied to user 'CbnrmLI_dbms'@'localhost' for table 'clcategory'
Please help me !
Sochan