ASP.NET操作MySql数据库的实例代码讲解
更新时间:2016年12月25日 08:25:59 作者:贝壳
这篇文章主要介绍了ASP.NET操作MySql数据库的实例代码讲解,需要的朋友可以参考下
一、把MySql.Data.dll放到BIN目录下。
二、这是aspx.cs的全部源码,修改参数直接运行即可!
using MySql.Data.MySqlClient;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Login : System.Web.UI.Page
{
public static class MySqlHelper
{
public static int ExecuteNonQuery(string connectionString, CommandType commandtype, string commandText)
{
return ExecuteNonQuery(connectionString, commandtype, commandText, null);
}
public static int ExecuteNonQuery(string connectionString, CommandType commandtype, string commandText, params MySqlParameter[] commandParameters)
{
if (string.IsNullOrEmpty(connectionString))
{
throw new Exception("connectionString exception");
}
int result = 0;
MySqlConnection con = null;
try
{
using (con = new MySqlConnection(connectionString))
{
con.Open();
MySqlCommand command = new MySqlCommand(commandText, con);
command.CommandType = commandtype;
result = command.ExecuteNonQuery();
}
return result;
}
catch (Exception ex)
{
throw ex;
}
finally
{
if (con.State == ConnectionState.Open)
{
con.Close();
}
}
}
}
protected void Page_Load(object sender, EventArgs e)
{
string connectionString = "server=localhost;uid=root;pwd=;database=zentaopro;";
LogManage_SqlDate.WriteLog("connectionString=:" + connectionString);
string sql = "insert user(account) values('china2')";
MySqlHelper.ExecuteNonQuery(connectionString, CommandType.Text, sql);
Console.Read();
}
}
以上所述是小编给大家介绍的ASP.NET操作MySql数据库的实例代码讲解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
相关文章
Linux上使用Docker部署ASP.NET Core应用程序
这篇文章介绍了使用Docker部署ASP.NET Core应用程序的方法,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2022-03-03
.NET Core跨平台串口通讯使用SerialPortStream基础类库问题解决
这篇文章介绍了.NET Core跨平台串口通讯使用SerialPortStream基础类库问题解决,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2022-01-01
asp.net音频转换之.amr转.mp3(利用ffmpeg转换法)
AMR转MP3可实现将手机上的AMR录音转换成流行的MP3格式,以适用更广泛的应用。AMR的体积非常小,适用于存储在手机中,当我们想将在手机上的音频上传到网络,就需要将其转换成MP3等流行的格式,本文就是介绍asp.net利用ffmpeg转换法将.amr转.mp3的方法,下面来一起看看吧。2016-12-12


最新评论