程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Access數據庫 >> 關於Access數據庫 >> 清除Access數據庫中的所有數據

清除Access數據庫中的所有數據

編輯:關於Access數據庫

DeletingalldatafromanAccessdatabase

Sometimesitmaybenecessarytodeleteallthedatainadatabase
whileretainingthetablestructure.Ifdonemanually,thisjobcan
quicklybecometedious.Ifyourdatabasehasmanytables,the
followingcodewillclearallthedatainahurry.

DimctrAsContainer,docAsDocument,dbAsDatabase
Setdb=CurrentDB()
Setctr=db.Containers!Tables
ForEachdocinctr.Documents
IfLeft$(doc.Name,4)<>"MSys"Then注釋:Tableisnotasystemtable
db.Execute"DELETE["&doc.Name&"].*"&_
"From["&doc.Name&"];"
EndIf
Nextdoc

Youmightnotwanttodeletedatafromlinkedtables.Thiscanbeeasily
accommodatedbycheckingtheConnectpropertyforeachTableDefdocument.
ThemodifIEdcodereads:

DimctrAsContainer,docAsDocument,dbAsDatabase
Setdb=CurrentDb()
Setctr=db.Containers!tables
ForEachdocInctr.Documents
IfLeft$(doc.Name,4)<>"MSys"And_
db.TableDefs(doc.Name).Connect=""Then
注釋:Tableisnotasystemtableoralinkedtable
db.Execute"DELETE["&doc.Name&"].*"&_
"From["&doc.Name&"];"
EndIf
Nextdoc

Youmustalsohavecascadingupdates/deletesenabledforthisprocedure
toclearthedatafromalltables.Asanalternative,runthecode
multipletimes.Onthefirstpassthroughthedatabase,thetableson
onesideoftherelationshiparecleared,allowingtheremainingtables
tobeclearedonthenextpass.

ThistipwascontributedbyDr.MichaelS.Stoner,HenriKover,andStephenBond.

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