|
楼主 |
发表于 2008-4-8 23:04:07
|
显示全部楼层
cPanel新建数据库 (MySQL Datebases) 教程
1、登录控制面板
2、点击MySQL® Databases 进入mySQL管理界面
3、在New Database:中填入数据库名称,然后点击Create DataBase新建一个数据库。返回信息如下:
Database Created
Added the database test.
说明数据库建好.
4、然后再给数据库添加用户名。
Username: 填写数据库用户名 Password:填写密码,点击Create user建立一个数据库用户!
5、最后在数据库管理界面找到Add Users To Your Databases:,将用户和数据库想关联!
在左侧user选折你新建立的用户名,右侧Database选折刚建立的数据库,权限钩选ALL,然后点击Add User to Database将用户添加到对应的数据库中.返回信息:
Account added to Access List
Added the user lunar_ceshi to the database taohost_test.
说明用户名已经添加到了数据库中。
这样一个数据库就建立好了,可以使用了.
在程序中填写数据库信息时需要注意一点,数据库名称和数据库用户并不是你建立时填写的,而是加一个前缀.例如在这个例子中我们用的数据库名是test, 用户名是test,那么实际的名称应该分别是 用户名_test,用户名_test,其中usename就是你的主机帐户名称.数据库服务器是localhost.
建好的数据库信息可以在数据库管理界面看到,类似这样的信息:
Current Databases:
用户名_test
Users in test
taohost_test (Privileges: ALL PRIVILEGES)
Connection Strings
Perl $dbh = DBI->connect("DBI:mysql:taohost_test:localhost","taohost_test","<; PASSWORD HERE>");
PHP $dbh=mysql_connect ("localhost", "taohost_test", "<; PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("taohost_test");
信息里面给出了数据库名称taohost_test,用户名 taohost_test ,下面的Connection Strings是告诉你在perl和PHP中如何连接数据库的连接字串,有需要的话可以借鉴! |
|