MySql安装步骤图文教程及中文乱码的解决方案
数据库  /  管理员 发布于 6年前   133
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安装步骤图文教程及中文乱码的解决方案,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对站的支持!
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号