Soldato
- Joined
- 12 Feb 2006
- Posts
- 17,418
- Location
- Surrey
im trying to i bleieve insert a user into mySQL, well not sure what it is actually called, i have been told to do this from a video i am using to teach me this:
use mysql;
show tables;
select * from user \G;
this then brings up a load of information and i need to make my own. i watch the woman type in this and hers works fine, however mine doesnt seem to:
INSERT INTO user (Host, User, Password, Select_priv, Insert_priv, Update_priv, Delete_priv) VALUES ("localhost", "php", Password("i put my Password in here"), "Y", "Y", "Y", "Y");
then when i click enter i get a beep from my computer and this messege which is where i get stuck as i have no clue what i need to put for it:
ERROR 1364 (HY000); Field 'ssl_cipher' doesn't have a default value
What do i do to sort this out?
use mysql;
show tables;
select * from user \G;
this then brings up a load of information and i need to make my own. i watch the woman type in this and hers works fine, however mine doesnt seem to:
INSERT INTO user (Host, User, Password, Select_priv, Insert_priv, Update_priv, Delete_priv) VALUES ("localhost", "php", Password("i put my Password in here"), "Y", "Y", "Y", "Y");
then when i click enter i get a beep from my computer and this messege which is where i get stuck as i have no clue what i need to put for it:
ERROR 1364 (HY000); Field 'ssl_cipher' doesn't have a default value
What do i do to sort this out?