How do I create a database in MySQL?

You can create a database via your control panel by clicking on the mySQL icon. When you create the database you choose the name. This then becomes the name of your database. Your username will be added to it so that the full database name will be username_dbname.

You will also need to create database username and password under MySQL. The dbusername you input is limited to 8 characters. Your username will be added to it so that the full dbusername will be username_dbusername. You then add this user to the database you created and it should then give you some connection strings for Perl and Php.

To add the user, select the user in the drop-down list and select the database in the other drop-down list. Then click the Add User to DB button under it.

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Can I backup my MySQL database? How do I backup my database?

You can backup your database two ways. 1. Click on Backup in Cpanel then click on the database...

Can I connect to MySQL remotely?

Yes, you can connect to your MySQL database remotely using a client such as MySQL-Front at...

Can I use MySQL Front to access my database?

You can remotely connect to your database by using your domain name as the host you are...

Does your MySQL server support extended character sets, foreign character sets, and collation sets?

In the control panel's left-hand side of the page, there should be a MySQL version for your...

How do I export and import a mysql db using PHPMyAdmin?

Step 1: Open phpMyAdmin and select the database from where you want to export data and/or...