how to add db user and password in mysql code example
Example 1: how to create new database user
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
Example 2: how to create new database user
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';