程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Access數據庫 >> Access數據庫入門 >> 恢復從 Access 2000、 Access 2002 或 Access 2003 中數據庫刪除表的辦法

恢復從 Access 2000、 Access 2002 或 Access 2003 中數據庫刪除表的辦法

編輯:Access數據庫入門

恢復從 Access 2000、 Access 2002 或 Access 2003 中數據庫刪除表的辦法。本站提示廣大學習愛好者:(恢復從 Access 2000、 Access 2002 或 Access 2003 中數據庫刪除表的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是恢復從 Access 2000、 Access 2002 或 Access 2003 中數據庫刪除表的辦法正文


 留意 : 本文示例代碼運用 Microsoft 數據訪問對象。 為此代碼才干正常運轉, 您必需援用 Microsoft DAO 3.6 對象庫。 可以停止, 單擊  工具  菜單中 VisualBasic 編輯器, 上  援用  並確保選中  Microsoft DAO 3.6 對象庫  復選框。

1.    在 MicrosoftAccess 中翻開數據庫。
2.    在數據庫窗口, 單擊下 對象 , 模塊 , 然後單擊 新建 。
3.    鍵入或粘貼以下代碼, 您只要創立模塊中: 


Function RecoverDeletedTable() 
On Error GoTo ExitHere 

'*Declarations* 
  Dim db As DAO.Database 
  Dim strTableName As String 
  Dim strSQL As String 
  Dim intCount As Integer 
  Dim blnRestored As Boolean 

'*Init* 
  Set db = CurrentDb() 

'*Procedure* 
  For intCount = 0 To db.TableDefs.Count - 1 
    strTableName = db.TableDefs(intCount).Name 
    If Left(strTableName, 4) = "~tmp" Then 
 strSQL = "SELECT DISTINCTROW [" & strTableName & "].* INTO " & Mid(strTableName, 5) & " FROM [" & strTableName & "];" 
 DoCmd.SetWarnings False 
 DoCmd.RunSQL strSQL 
 MsgBox "A deleted table has been restored, using the name '" & Mid(strTableName, 5) & "'", vbOKOnly, "Restored" 
 blnRestored = True 
    End If 
  Next intCount 

  If blnRestored = False Then 
MsgBox "No recoverable tables found", vbOKOnly 
  End If 

'*EXIT/ERROR* 
ExitHere: 
  DoCmd.SetWarnings True 
  Set db = Nothing 
  Exit Function 

ErrorHandler: 
  MsgBox Err.Description 
  Resume ExitHere 

End Function


4.    在 調試 菜單上, 單擊 編譯 數據庫稱號 數據庫稱號 。
5.    保管為 RecoverTable 模塊。 要測試此函數, 首先創立兩個表, 添加行, 並刪除這兩個表。
6.    在即時窗口, 鍵入以下行, 然後按 ENTER 鍵:

RecoverDeletedTable
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved