若程序使用Access資料庫開發,當Access資料庫損毀時,一進入程序,便會出現以下訊息:
Can'topendatabase'name'.Itmaynotbeadatabasethatyourapplicationrecognizes,orthefilemaybecorrupt.(Error3049)
若是程序中未加入錯誤判斷,程序便會中斷跳出,這會給予使用者極不好的印象,要避免這種情形,甚至不讓使用者發現資料庫損毀,便要加入以下之程序碼加以判斷:
PrivateSubForm_Load()
DimdbAsDatabase
OnErrorGoToerror1
Setdb=OpenDatabase("c: est.mdb")
OnErrorGoTo0
:'正常程序開始
:
ExitSub
error1:
IfErr=3049Then'資料庫損毀
DBEngine.RepairDatabase"C: est.mdb"
Resume
Else
MsgBoxErr&Error(Err)
EndIf->