博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#实现ACCESS数据库备份还原
阅读量:6701 次
发布时间:2019-06-25

本文共 1515 字,大约阅读时间需要 5 分钟。

/// <summary>

    /// 备份Access数据库
    /// </summary>
    /// <param name="srcPath">要备份的数据库绝对路径</param>
    /// <param name="aimPath">备份到的数据库绝对路径</param>
    /// <returns></returns>
    public bool Backup(string srcPath, string aimPath)
    {

if (!File.Exists(srcPath))

        {
            throw new Exception("源数据库不存在,无法备份");
        }
        try
        {
            File.Copy(srcPath, aimPath, true);
        }
        catch (IOException ixp)
        {
            return false;
            throw new Exception(ixp.ToString());

}

        return true;
    }

/// <summary>

    /// 还原Access数据库
    /// </summary>
    /// <param name="bakPath">备份的数据库绝对路径</param>
    /// <param name="dbPath">要还原的数据库绝对路径</param>
    public bool RecoverAccess(string bakPath, string dbPath)
    {
        if (!File.Exists(bakPath))
        {
            throw new Exception("备份数据库不存在,无法还原");
        }
        try
        {
            File.Copy(bakPath, dbPath, true);
        }
        catch (IOException ixp)
        {
            return false;
            throw new Exception(ixp.ToString());
        }
        return true;
    }

 

//备份的事件及获取备份路径和还原的路径

protected void Button1_Click(object sender, EventArgs e)

    {
        string path = HttpContext.Current.Server.MapPath("../App_Data/df.mdb");
        string pathdata = path ;
        string pathback = path.Substring(0, path.Length - 15) + @"dataBack\df.mdb";
        if (Backup(pathdata, pathback))
        {
            Label3.Text = "备份成功!";
        }
        else
        {
            Label3.Text = "备份失败!";
        }
    }

//还原的事件及获取备份路径和还原的路径

protected void Button2_Click(object sender, EventArgs e)

    {
        string path = HttpContext.Current.Server.MapPath("../App_Data/df.mdb");
        string pathdata = path;
        string pathback = path.Substring(0, path.Length - 15) + @"dataBack\df.mdb";
        if (RecoverAccess(pathback, pathdata))
        {
            Label3.Text = "还原成功!";
        }
        else
        {
            Label3.Text = "还原失败!";
        }
    }

转载地址:http://lywlo.baihongyu.com/

你可能感兴趣的文章
gulp前端构建工具白话讲解,也包含自己使用的一些心得体会 。(针对初次接触gulp的同学,大神误喷)...
查看>>
最新超详细linux部署wordpress步骤
查看>>
独孤九剑(0x02) - 数据结构篇
查看>>
【译】 eBay 的速度与风范
查看>>
Android 优化交互 —— CoordinatorLayout 与 Behavior
查看>>
[LintCode/LeetCode] Generate Parentheses
查看>>
Comparable and Comparator
查看>>
Javascript---Date类型和Math类型
查看>>
从ACID到CAP到BASE
查看>>
一种Auto Unlock的方法
查看>>
Tornado 4.3文档翻译: 用户指南-协程
查看>>
被遗忘的Android mipmaps简介
查看>>
最长回文子串——Manacher 算法
查看>>
数据齿轮(DataGear)数据库管理系统 1.1 版本发布
查看>>
[Leetcode] Max Points on a Line 线上最大点数
查看>>
arm还是x86?未来在工业SBC数字谁可以脱颖而出
查看>>
Mybatis成为首选持久框架的原因
查看>>
SAP利用内表删除多条数据(自定义表)
查看>>
电脑上卸载软件的残留文件怎么清理?
查看>>
Android 初始化Menu item的值(ActionBar篇)
查看>>