■ DBEngine 클래스의 CompectDatabase 메소드를 사용해 MDB 파일을 압축하는 방법을 보여준다.
▶ 예제 코드 (VB)
1 2 3 4 5 6 7 8 9 |
Dim strSourceFilePath As String Dim strTargetFilePath As String strSourceFilePath = "c:\source.mdb" strTargetFilePath = "c:\target.mdb" DBEngine.CompactDatabase strSourceFilePath, strTargetFilePath |