C#中完成查找mysql的裝置途徑。本站提示廣大學習愛好者:(C#中完成查找mysql的裝置途徑)文章只能為提供參考,不一定能成為您想要的結果。以下是C#中完成查找mysql的裝置途徑正文
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.WordStr("/", "\\");
return strPath;
}
3.獲得mysql的裝置bin途徑
strmysqlPath= GetMysqlPath() + "\\bin";
4.然後依據上一篇中的博客,對mysql停止附加和備份功效。