Hi all. So I know how to log onto the server as an admin and create a new database.
Connection conn(false);
conn.connect("", hostname, admin_username, admin_password);
conn.create_db(dbname);
My question is, after creating database dbname, how do I assign it its own username and password variables?
Thanks in advance!