程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySql裝置步調圖文教程及中文亂碼的處理計劃

MySql裝置步調圖文教程及中文亂碼的處理計劃

編輯:MySQL綜合教程

MySql裝置步調圖文教程及中文亂碼的處理計劃。本站提示廣大學習愛好者:(MySql裝置步調圖文教程及中文亂碼的處理計劃)文章只能為提供參考,不一定能成為您想要的結果。以下是MySql裝置步調圖文教程及中文亂碼的處理計劃正文


MySql Server裝置步調以下所示:

1裝置MySql Server

2 裝置MySqlServer治理對象

解壓中文說話包,將文件復制到裝置目次下籠罩

文件籠罩後,翻開軟件設置說話為中文(CN)

3 MySqlServer開辟留意事項(C#)

1.聯接字符串:"Server=localhost;Database=100;Uid=root;Pwd='root'"

2.援用MySql.Data.dll;using MySql.Data.MySqlClient;

3.應用MySqlConnection、MySqlParameter、MySqlDataAdapter、MySqlCommandBuilder、MySqlCommand、MySqlDataAdapter、MySqlTransaction等類

5.應用MySqlCommand. ExecuteScalar()辦法前往的object假如要轉為int類型,必需應用Convert來強迫轉換,不然能夠會失足。

6.修正記載時,字段數據類型假如為Bit類型的時刻,Sql語句中的字段值要應用Ture或False,不克不及像SqlServer中一樣應用0或1。

7.敕令行對象:

public class Cmd
{
/// <summary>
/// 履行Cmd敕令
/// </summary>
/// <param name="workingDirectory">要啟動的過程的目次</param>
/// <param name="command">要履行的敕令</param>
public static void StartCmd(String workingDirectory, String command)
{
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.WorkingDirectory = workingDirectory;
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.StandardInput.WriteLine(command);
Thread.Sleep(10000);
//p.StandardInput.WriteLine("exit");
}
public static void StartCmd()
{
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.StandardInput.WriteLine("net stop mysql");
Thread.Sleep(5000);
p.StandardInput.WriteLine("net start mysql");
Thread.Sleep(5000);
p.StandardInput.WriteLine("exit");
}
}

備份:

public static bool BackUp(string backupPath)
{
try
{
//構建履行的敕令
StringBuilder sbcommand = new StringBuilder();
sbcommand.AppendFormat("mysqldump -f -l -q -uroot -proot Sciendox50 -r \"{0}\"", backupPath);
String command = sbcommand.ToString();
//獲得mysqldump.exe地點途徑
String appDirecroty = @"C:\Program Files\MySQL\MySQL Server 5.5\bin\";
Cmd.StartCmd(appDirecroty, command);
Cmd.StartCmd();//重啟mysql辦事
MessageBox.Show(@"數據庫已勝利備份到 " + backupPath + " 文件中", "提醒", MessageBoxButtons.OK, MessageBoxIcon.Information);
return true;
}
catch (Exception)
{
MessageBox.Show("數據庫備份掉敗!");
return false;
}
}

復原:

/// <summary>
/// 數據復原
/// </summary>
/// <param name="FilePath">文件途徑</param>
/// <returns></returns>
public static bool RestoreDB(string FilePath)
{
try
{
StringBuilder sbcommand = new StringBuilder();
//在文件途徑前面加上""防止空格湧現異常
sbcommand.AppendFormat("mysql -uroot -proot Sciendox50 <\"{0}\"", FilePath);
String command = sbcommand.ToString();
//獲得mysql.exe地點途徑
String appDirecroty = @"C:\Program Files\MySQL\MySQL Server 5.5\bin\";
DialogResult result = MessageBox.Show("您能否真的想籠罩之前的數據庫嗎?那末之前的數據庫數據將喪失!!!", "正告", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
if (result == DialogResult.Yes)
{
Cmd.StartCmd(appDirecroty, command);
Cmd.StartCmd();//重啟mysql辦事
MessageBox.Show("數據庫復原勝利!");
return true;
}
return false;
}
catch (Exception)
{
MessageBox.Show("數據庫復原掉敗!");
return false;
}
}

以上所述是小編給年夜家引見的MySql裝置步調圖文教程及中文亂碼的處理計劃,願望對年夜家有所贊助,假如年夜家有任何疑問請給我留言,小編會實時答復年夜家的。在此也異常感激年夜家對網站的支撐!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved