Your MySQL database has been created.  Here is the login info that you
will need:

     Database Server:     anker_joomla.sqldb.swcp.com
     Database Name:       anker_joomla
     Username:            anker_joomla
     Password:            85jU35EaSQZzwe/xa

You can administer your database via this web page:

    http://anker_joomla.sqldb.swcp.com/


If you are so inclined, you can also access the mysql server from the
unix command line like so:

    mysql -h anker_joomla.sqldb.swcp.com -u USERNAME -p DATABASENAME


Documentation on using mysql from C and Perl is available on our web site
(click the MySQL link at http://www.swcp.com/swcp/links.php)

One popular way to access a MySQL database is with PHP.  PHP is a programming
language which is embedded in HTML.  SWCP's web server has PHP support built
in, including the MySQL programming interface.  See http://www.php.net for
more information.

Wordpress wp-config.php snippet:

define('DB_NAME',     'anker_joomla');
define('DB_USER',     'anker_joomla');
define('DB_PASSWORD', '85jU35EaSQZzwe/xa');
define('DB_HOST',     'anker_joomla.sqldb.swcp.com');