如何管理MySQL數(shù)據(jù)庫?- 數(shù)據(jù)庫問題,虛擬主機域名注冊-常見問題,虛擬主機,網(wǎng)頁制作,域名注冊,主機,企業(yè)郵局,主頁空間,個人主頁,網(wǎng)絡(luò)實名,主機托管,網(wǎng)站建設(shè),域名">

人人爽天天摸天天碰天天添,亚洲成在人网站天堂日本,欧美日韩人成视频在线播放,午夜欧美精品久久久久久久

  虛擬主機域名注冊-常見問題數(shù)據(jù)庫問題 → 數(shù)據(jù)庫問題


如何管理MySQL數(shù)據(jù)庫?
作者:
A:MYSQL數(shù)據(jù)庫的管理方式如下:

 

首先下載PhpMyAdmin軟件,將此文件包解壓,找到其中的一個文件:config.inc.php(或者如config.*等, 該文件名會因phpmyadmin版本不同, 而有所差別)
修改以下配置:
$cfgServers[1]['host'] = 'localhost'; // MySQL hostname
$cfgServers[1]['port'] = ''; // MySQL port - leave blank for default port
$cfgServers[1]['socket'] = ''; // Path to the socket - leave blank for default socket
$cfgServers[1]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfgServers[1]['stduser'] = ''; // MySQL standard user settings (this user must have read-only
$cfgServers[1]['stdpass'] = ''; // access to the "mysql/user" and "mysql/db" tables)
$cfgServers[1]['adv_auth'] = FALSE; // Use advanced authentication?
$cfgServers[1]['user'] = 'alintest'; // MySQL user
$cfgServers[1]['password'] = 'alintest'; // MySQL password (only needed with basic auth)
$cfgServers[1]['only_db'] = 'alintest'; // If set to a db-name, only this db is displayed at left frame

然后您ftp到您的網(wǎng)站, 在wwwroot下建立一個目錄phpmyadmin, 把phpmyadmin所有文件上傳到該目錄下,訪問http://www.yourdomain.com/phpmyadmin, 即可對數(shù)據(jù)庫進行管理。
在建好數(shù)據(jù)庫后, 務必將這些phpadmin的文件移走, 否則任何人都可以管理用戶的數(shù)據(jù)庫。

若是采用用php編程, 可以用以下代碼連接數(shù)據(jù)庫: 
<?php
$database = "alintest";
$user = "alintest";
$password = "alintest";
$link = mysql_connect ("localhost", $user, $password)
or die ("Could not connect");
 mysql_select_db($database, $link);

 ..........

mysql_close ($link);
?>

如果采用perl編程, 可以用如下代碼連接數(shù)據(jù)庫:
#!/usr/bin/perl

use DBI;
$database = "alintest";
$user = "alintest";
$password = "alintest";
$dbh = DBI->connect("DBI:mysql:$database", $user, $password);

..........

$rc = $dbh->disconnect;

如果需要mod_perl的功能的話, 可訪問http://www.youdromain.com/perl/yourcgi.cgi
把普通的/cgi-bin/改成/perl/;
而mod_perl的CGI目錄和普通CGI目錄是一樣的, 都在 wwwroot/cgi-bin下.

例:把一個env.cgi的程序上載到 wwwroot/cgi-bin目錄下:
如果用普通的方式訪問, 那么URL為:http://www.yourdomain.com/cgi-bin/env.cgi
如果用mod_perl的方式訪問,那么URL為:http://www.yourdomain.com/perl/env.cgi



來源:
閱讀:16045
日期:2005-08-03

【 雙擊滾屏 】 【 推薦朋友 】 【 收藏 】 【 打印 】 【 關(guān)閉 】 【 字體: 】 
上一篇:關(guān)于asp.net 會話常丟失的問題解決
下一篇:虛擬主機常見問題解答!
  >> 相關(guān)文章
  沒有相關(guān)文章。