ASP.NET连接Mysql数据库 mysql实现sqldatasource数据源控件连接
Asp.net连接mysql数据库
首先需要用mysql的odbc创建一个数据源或者查看odbc里有没有现成的;在左下角搜索栏搜索odbc,能搜到32位和64位的版本,看你的mysql用的什么版本,通常是32位的;
点进驱动程序查找看本机有没有装mysql的odbc,没有下载安装就行;然后在用户DSN里添加创建,最后测试成功就完成了。
在vs中的操作
在服务器资源管理器中数据连接新建连接,选择其他ODBC确认,接着选择刚刚创建的数据源,输入相关信息;
待更新 不知怎么提前设置数据库,我在是在连接字符串那块手动添加database=wind(数据库名);否则后续生成connectionString就要手动添加一些参数;测试连接成功即可,在数据连接那可以看见新创建的数据库连接,并且连接状态为“插头”。
sqldatasource控件示例
实现简单的验证效果
代码放在最后!数据库内容自定!
Now,let's go!
在工程中新建web窗体,然后在工具箱中拖动sqldatasource数据源控件,在可视化界面中点击控件的 > ,配置数据源;
点击连接字符串可以看到完整的;
由于默认SQL server的语法可带[ ],下一步更换数据库wind,并进行查询测试,能查询出结果集就成功啦
如果添加成功将会在aspx页面自动添加数据源相关的代码
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:windConnectionString %>"
ProviderName="<%$ ConnectionStrings:windConnectionString.ProviderName %>"
SelectCommand="select * from wind">
</asp:SqlDataSource>
接下来就是示例中的数据绑定,拖动radiobuttonlist控件,配置数据源
接下来就是对sqldatasource控件进行selected事件的添加,注意双击控件的事件默认是selecting事件,selected需在事件框中双击;添加相关判断连接成功的代码;
if (e.Exception != null)
{
if (e.Exception.GetType() == typeof(System.Data.SqlClient.SqlException))
{
Label2.Text = "连接数据库失败";
e.ExceptionHandled = true; //设置异常已处理的状态
}
}
else
{ Label2.Text = "连接数据库成功"; }
最后进行调试即可!
后续相关控件和方法还在学习中( ఠൠఠ )ノ
wind.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="wind.aspx.cs" Inherits="wind.wind" %>
<!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="Label1" runat="server" Text="使用SqlDataSource连接mysql数据库示例" ForeColor="Maroon" Height="24px"></asp:Label>
<br />
<asp:Label ID="Label2" runat="server" Text=""></asp:Label>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:windConnectionString %>" OnSelected="SqlDataSource1_Selected" ProviderName="<%$ ConnectionStrings:windConnectionString.ProviderName %>" SelectCommand="select * from wind"></asp:SqlDataSource>
<asp:RadioButtonList ID="RadioButtonList1" runat="server" DataSourceID="SqlDataSource1" DataTextField="regionWind" DataValueField="regionID">
</asp:RadioButtonList>
</div>
</form>
</body>
</html>
wind.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace wind
{
public partial class wind : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void SqlDataSource1_Selected(object sender, SqlDataSourceStatusEventArgs e)
{
if (e.Exception != null)
{
if (e.Exception.GetType() == typeof(System.Data.SqlClient.SqlException))
{
Label2.Text = "连接数据库失败";
e.ExceptionHandled = true; //设置异常已处理的状态
}
}
else
{ Label2.Text = "连接数据库成功"; }
}
}
}
上一篇: easypoi 模版导出
下一篇: 浅谈Android动画(二) 逐帧动画