Reputation: 13
I tried to move my data base from the localhost
of phpmyadmin
to another phpmyadmin
using a free webhost,"000webhost" to be precise.
I tried just some simple code
CREATE TABLE `products` (
`id` int(10) NOT NULL,
`name` varchar(250) NOT NULL,
`code` varchar(100) NOT NULL,
`price` double(9,2) NOT NULL,
`image` varchar(250) NOT NULL,
`stock` int(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
and the only thing i get is this:
1044 - Access denied for user 'id9605813_band'@'% to database 'information_schema'
What can I do to fix this?
Upvotes: 1
Views: 1170
Reputation: 1
Your user doesn't have the correct user permissions to create edits/writes to the respective database.
Upvotes: 1