我要投稿
  • 您当前的位置:365bet官方 -> 技术教程 -> 数据库教程 -> Access教程 -> 教程内容
  • [ 收藏本页教程 ]
  • 创建一个空数据库access教程

    教程作者:佚名    教程来源:不详   教程栏目:Access教程    收藏本页
    Function CreateNormalDB(strPathName As String) As Boolean
    On Error GoTo Exit_ERR
    Dim wrkDefault As Workspace
    Dim NewDB As Database

    CreateNormalDB = False
    Set wrkDefault = DBEngine.Workspaces(0)
    If Dir(strPathName) <> "" Then Kill strPathName
    Set NewDB = wrkDefault.CreateDatabase(strPathName, dbLangGeneral)

    NewDB.Close
    Set NewDB = Nothing

    CreateNormalDB = True
    Exit Function

    Exit_ERR:
    MsgBox "备份失败!" & vbCrLf & vbCrLf & Err.Description, vbExclamation
    Exit Function
    End Function

    '调用时只需提供路径及文件名即可,此函数为备份数据模块的一部份


    我要投稿   -   广告合作   -   关于本站   -   友情连接   -   网站地图   -   联系我们   -   版权声明   -   设为首页   -   加入收藏   -   网站留言
    Copyright © 2009 - 20012 www.www.ct131.com All Rights Reserved.365bet官方 版权所有