码迷,mamicode.com
首页 > 数据库 > 详细

c# 实现查找mysql安装路径

时间:2015-03-19 14:47:02      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

1.c#可以调用msyql的导入导出命令,但是需要先判断客户机是否安装了mysql,及其安装mysql的路径问题。

2.查询mysql安装路径的函数

  private string GetMysqlPath()
        {
            string strPath = string.Empty;
            string strsql = "select @@basedir as basePath from dual ";
            strPath = 数据库执行当前的strsql

            strPath = strPath.Replace("/", "\\");
            return strPath;
        }

3.获取mysql的安装bin路径

strmysqlPath= GetMysqlPath() + "\\bin";

4.然后根据上一篇中的博客,对mysql进行附加和备份功能。

c# 实现查找mysql安装路径

标签:

原文地址:http://blog.csdn.net/vbloveshllm/article/details/44457561

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!