近日,本人為了將為公司開發的一個信息管理系統從以前試運行的開發機器上(Windows NT + IIS4.0 + Access)遷移至一台真正的Linux服務器上(apache1.3.12 + PHP 4.03 + MySQL 3.23.26),其中數據庫中的幾十個表的內容遷移,開始讓我小費了一些周折,從網上也下載了一些MySQL的客戶軟件或是數據庫管理軟件,寫得較好的軟件均有數據遷移功能,但其遷移方式不外乎兩種,一種是采用文件引入方式,此種方式在處理數據庫中有和分隔符相同的字符時,會產生錯誤,尤其是在處理ACCESS中的Memo字段,很容易出錯,最後導致導出後的數據不是多了就是少了。而另一種支持ODBC直接導入的功能較強,基本可無錯誤地導入各個表的內容,但很遺憾,這必須是建立在ACCESS中表格的字段是英文是才可以,如在Access中字段是中文名,一般也出錯,不能成功導入。
為此我只好花了點時間寫了兩個小程序,用於將Access數據庫的內容向MySQL遷移,經使用,效果還不錯,特在此寫出奉獻給各位一試或評判。
先概述一下使用方法,
1,將Access的數據庫建立一個"system DSN";
2,根據Access數據庫中各表的名稱,在MySQL中建立相應的各個空表;
3,運行fdlist.PHP;
4,運行import.PHP;
5,每運行一次3,4步可遷移一個表,然後修改fdlist.PHP中的Access源表名和MySQL中的目標表名,再運行3,4步,直至遷移所有的表,
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
以下為 fdlist.PHP源程序
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<Html>
<head>
<style type=text/CSS>
body,td,li,div,p,pre,a,b,h1,h2,h3,h4 {font-family:verdana;font-size:9pt;line-height : 18px;color:#a00000 }
</style>
</head>
<?
$dbconnection = @mysql_connect("yourmysqlserver", "mysqlaccount", "MySQLpassWord")
or dIE ("can not connect to database server");
@MySQL_select_db("yourdatabase")
or dIE("<p style='font-size:9pt;font-family:verdana;color:#803333;font-weight:bold'>No Database,</p>") ;
$odbc_table = "youroriginaltable" ; // The original table name in your ODBC database
$mysql_table = "yournewtable" ; // The new table name in your MySQL Database.
?>
<body bgcolor=#f0f0f0 topmargin=0 leftmargin=0 text=#a00000>
<br>
<div style="font-size:24pt;font-family:times;font-weight:bold;color:#00a000">FIElds List of Two tables</div>
<hr size=1 color=#900000>
<?
$conn = odbc_connect("task", "", "");
$odbc_query = "select * from " . $odbc_table . " where 1=2";
$recordsid = odbc_exec($conn, $odbc_query);
$idcounts = odbc_num_fIElds( $recordsid ) ;
$fdlist1 = "" ;
for ( $i = 1 ; $i <= $idcounts ; $i ++)
$fdlist1 .= odbc_fIEld_name($recordsid,$i)."," ;
echo "<div> Fd1 = " . $fdlist1 ;
$fdlist1 = substr($fdlist1,0,strlen($fdlist1)-1) ;
$fdlist2 = "" ;
$sqlquery = "select * from " . $MySQL_table . " where 1=2 " ;
$records2 = MySQL_query ($sqlquery) ;
$idcount2 = MySQL_num_fIElds ( $records2 ) ;
for ( $i = 0 ; $i < $idcount2 ; $i++)
$fdlist2 .= MySQL_fIEld_name($records2,$i )."," ;
echo "<div> FD2 = " . $fdlist2 ;
$fdlist2 = substr($fdlist2,0,strlen($fdlist2)-1) ;
$fp = fopen ("fdlist.txt","w") ;
fwrite ($fp,$ctable) ;
fwrite ($fp,"n");
fwrite ($fp,$fdlist1) ;
fwrite ($fp,"n");
fwrite ($fp,$etable) ;
fwrite ($fp,"n") ;
fwrite ($fp,$fdlist2) ;
fclose($fp) ;
odbc_close($conn);
if ( $idcount2 != $idcounts ) {
echo "<hr size=1 color=#900000>".
"<div style='font-size:20pt;font-family:times;font-weight:bold'> The fIElds of two tables doesn't match" ;
echo "<br><br>ODBC_table FIElds = " . $idcounts;
echo "<br><br>MySQL_table FIElds = " . $idcount2;
}
?>
</body>
</Html>
~~~~~~~~~~~~~~~~~~~
未完接(二)
~~~~~~~~~~~~~~~~~~~