Use the following outline to connect and begin querying the mySQL server from a Perl script. Remember that you cannot connect to your databases remotely due to security concerns, you can only connect from localhost.
1. Declarations You must require the mySQL package for your script to function properly. Do this by including the following line in your code: use Mysql;
2. Connect To The Database Somewhere near the beginning of your script, you need to make your initial connection to the database server. Using the following form, substitute your database, username, and password for the examples to connect succesfully. Mysql->connect('localhost','DATABASENAME','USERNAME','USERPASSWORD');
3. Executing A Query You are now ready to begin querying the database server. Most problems that you may incur will generally occur due to invalid permission settings for the specified user.
Use the following outline to connect and begin querying the mySQL server from within your PHP scripts. Remember that you cannot connect to your databases remotely due to security reasons. You can only connect to them form localhost.
1. Connect To The mySQL Server Use the following statement to connect to the database server. Substitute the username, and password for ones who have created in the WebControl System.
MYSQL_CONNECT('localhost','USERNAME','PASSWORD');
2. Select Your Database Use the following statement to select the database you wish to connect to. Make sure you substitute the example with your database name. @mysql_select_db("DATABASENAME");
3. Executing A Query You are now ready to execute your queries. Most problems that arise with your scripts will be due to incorrect permission settings.
Use the following outline to connect and begin querying the mySQL server from a Telnet. Remember that you cannot connect to your databases remotely due to security concerns, you can only connect from localhost.
1. Connect To The mySQL Server servername:/> mysql -u USERNAME -p Enter Password: PASSWORD
2. Connect To The Database mysql> use DATABASENAME;