- A+
所属分类:.NET技术
C#连接MySQL数据库
准备工作
1.环境安装
安装MySQL For Visual Studio<<点击进入官网下载
第一个要下载安装,第二个下载后将MySQL.data添加到Visual Studio的项目引用当中。
2.准备好数据库
2.1 创建数据库
2.2 创建创建数据表
2.3 为数据表添加数据
3.数据库检查
3.1 检查数据表是否有主键
数据表中必须至少有一个主键
3.2 检查数据列编码方法与排序方法
字符集一般使用utf8mb4
3.3 检查MySQL服务是否正在运行
创建C# Web项目
1 添加引用
在 项目 -> 引用 中,添加引用MySQL.Data
2 Web窗体-Login-前端代码如下
WebForm_Login.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm_Login.aspx.cs" Inherits="WebApplication_OmtpcMgrSystem.sign.WebForm_Login" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:Label ID="lbl1" runat="server" Text="用户名"></asp:Label> <asp:TextBox ID="tb1" runat="server"></asp:TextBox> </div> <asp:Label ID="lbl2" runat="server" Text="密码"></asp:Label> <asp:TextBox ID="tb2" runat="server"></asp:TextBox> <br /> <asp:Label ID="lbl_Message" runat="server" Text=""></asp:Label> <br /> <asp:Button ID="btl_Login" runat="server" Text="登录" OnClick="btl_Login_Click" /> <br /> <asp:HyperLink ID="hre_forget" runat="server">忘记密码</asp:HyperLink> <asp:HyperLink ID="hre_reg" runat="server">注册</asp:HyperLink> </form> </body> </html>
3 Web窗体-Login-后端代码如下
WebForm_Login.aspx.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using MySql.Data.MySqlClient; namespace WebApplication_OmtpcMgrSystem.sign { public partial class WebForm_Login : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void btl_Login_Click(object sender, EventArgs e) { //接受前端数据并进行简单处理 string usrName = tb1.Text.Trim(); string usrPwd = tb2.Text.Trim(); //验证数据是否合理 if (usrName.Length == 0 || usrName.Length > 100) { lbl_Message.Text = "UserName is wrong!"; }; if (usrPwd.Length < 6 || usrPwd.Length > 100) { lbl_Message.Text = "UserPassword is wrong!"; } //try //{ //设计连接字符串(连接数据库) string conn = "Data Source = 127.0.0.1;" + "User ID=root;" + "Password=qq2686485465;" + "DataBase=omtpc;" + "port=3306"; //定义连接对象(构造函数的参数为数据库连接字符串) MySqlConnection con = new MySqlConnection(conn); //打开数据库连接 con.Open(); //执行数据库的访问操作 string strSqlCommand = "Select*from officer21 where usrID='" + usrName + "'"; MySqlCommand cmd = new MySqlCommand(strSqlCommand, con); MySqlDataReader dr = cmd.ExecuteReader();//查找多行 : ExecuteReader()方法 | 执行结果放入dr中 //dr.Read();//读出dr内容 if (dr.Read()) { string queryPassword = dr["password"].ToString(); if (usrPwd == queryPassword) { lbl_Message.Text = "验证成功"; Response.Redirect("welcome.aspx"); } else { lbl_Message.Text = "验证失败"; } } else { lbl_Message.Text = "用户名错误"; } //结束 dr.Close(); con.Close(); //} //catch (MySqlException ex) //{ // Console.WriteLine(ex.Message);//有错则报出错误 //} //finally //{ //} } } }