百度360必应搜狗淘宝本站头条
当前位置:网站首页 > IT知识 > 正文

C#操作数据库原生方法大全

liuian 2025-02-26 12:47 73 浏览

大家好,我是李工。C#编程我们常用操作数据库的ORM有EF、Dapper、SqlSugar、NHibernate这些成熟的框架;但是对于初学者还是推荐原生方法SqlClient,更利于原生SQL、存储过程的编写;有兴趣的小伙伴们可以一起学习。

一、引用SqlClient

using?System.Data.SqlClient;

二、数据库连接字符串

//数据库连接字符串(web.config来配置),可以动态更改connectionString支持多数据库.		
public?static?string connectionString?=?ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;

三、代码实现

执行简单SQL语句

#region ?执行简单SQL语句


///?
/// 执行SQL语句,返回影响的记录数
///?
///?SQL语句
///?影响的记录数
public static int ExecuteSql(string SQLString)
{
? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? using (SqlCommand cmd = new SqlCommand(SQLString, connection))
? ? ? ? {
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? connection.Open();
? ? ? ? ? ? ? ? int rows = cmd.ExecuteNonQuery();
? ? ? ? ? ? ? ? return rows;
? ? ? ? ? ? }
? ? ? ? ? ? catch (System.Data.SqlClient.SqlException e)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? connection.Close();
? ? ? ? ? ? ? ? throw e;
? ? ? ? ? ? }
? ? ? ? }
? ? }
}


///?
/// 执行SQL语句,返回影响的记录数
///?
///?SqlConnection对象
///?SqlTransaction事件
///?SQL语句
///?影响的记录数
public static int ExecuteSql(SqlConnection connection, SqlTransaction trans, string SQLString)
{
? ? using (SqlCommand cmd = new SqlCommand(SQLString, connection))
? ? {
? ? ? ? try
? ? ? ? {
? ? ? ? ? ? cmd.Connection = connection;
? ? ? ? ? ? cmd.Transaction = trans;
? ? ? ? ? ? int rows = cmd.ExecuteNonQuery();
? ? ? ? ? ? return rows;
? ? ? ? }
? ? ? ? catch (System.Data.SqlClient.SqlException e)
? ? ? ? {
? ? ? ? ? ? throw e;
? ? ? ? }
? ? }
}


///?
/// 执行Sql和Oracle滴混合事务
///?
///?SQL命令行列表
///?Oracle命令行列表
///?执行结果 0-由于SQL造成事务失败 -1 由于Oracle造成事务失败 1-整体事务执行成功
public static int ExecuteSqlTran(List?list, List?oracleCmdSqlList)
{
? ? using (SqlConnection conn = new SqlConnection(connectionString))
? ? {
? ? ? ? conn.Open();
? ? ? ? SqlCommand cmd = new SqlCommand();
? ? ? ? cmd.Connection = conn;
? ? ? ? SqlTransaction tx = conn.BeginTransaction();
? ? ? ? cmd.Transaction = tx;
? ? ? ? try
? ? ? ? {
? ? ? ? ? ? foreach (CommandInfo myDE in list)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? string cmdText = myDE.CommandText;
? ? ? ? ? ? ? ? SqlParameter[] cmdParms = (SqlParameter[])myDE.Parameters;
? ? ? ? ? ? ? ? PrepareCommand(cmd, conn, tx, cmdText, cmdParms);
? ? ? ? ? ? ? ? if (myDE.EffentNextType == EffentNextType.SolicitationEvent)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? if (myDE.CommandText.ToLower().IndexOf("count(") == -1)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? tx.Rollback();
? ? ? ? ? ? ? ? ? ? ? ? throw new Exception("违背要求" + myDE.CommandText + "必须符合select count(..的格式");
? ? ? ? ? ? ? ? ? ? }


? ? ? ? ? ? ? ? ? ? object obj = cmd.ExecuteScalar();
? ? ? ? ? ? ? ? ? ? bool isHave = false;
? ? ? ? ? ? ? ? ? ? if (obj == null && obj == DBNull.Value)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? isHave = false;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? isHave = Convert.ToInt32(obj) > 0;
? ? ? ? ? ? ? ? ? ? if (isHave)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? //引发事件
? ? ? ? ? ? ? ? ? ? ? ? myDE.OnSolicitationEvent();
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? if (myDE.EffentNextType == EffentNextType.WhenHaveContine || myDE.EffentNextType == EffentNextType.WhenNoHaveContine)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? if (myDE.CommandText.ToLower().IndexOf("count(") == -1)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? tx.Rollback();
? ? ? ? ? ? ? ? ? ? ? ? throw new Exception("SQL:违背要求" + myDE.CommandText + "必须符合select count(..的格式");
? ? ? ? ? ? ? ? ? ? }


? ? ? ? ? ? ? ? ? ? object obj = cmd.ExecuteScalar();
? ? ? ? ? ? ? ? ? ? bool isHave = false;
? ? ? ? ? ? ? ? ? ? if (obj == null && obj == DBNull.Value)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? isHave = false;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? isHave = Convert.ToInt32(obj) > 0;


? ? ? ? ? ? ? ? ? ? if (myDE.EffentNextType == EffentNextType.WhenHaveContine && !isHave)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? tx.Rollback();
? ? ? ? ? ? ? ? ? ? ? ? throw new Exception("SQL:违背要求" + myDE.CommandText + "返回值必须大于0");
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? if (myDE.EffentNextType == EffentNextType.WhenNoHaveContine && isHave)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? tx.Rollback();
? ? ? ? ? ? ? ? ? ? ? ? throw new Exception("SQL:违背要求" + myDE.CommandText + "返回值必须等于0");
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? continue;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? int val = cmd.ExecuteNonQuery();
? ? ? ? ? ? ? ? if (myDE.EffentNextType == EffentNextType.ExcuteEffectRows && val == 0)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? tx.Rollback();
? ? ? ? ? ? ? ? ? ? throw new Exception("SQL:违背要求" + myDE.CommandText + "必须有影响行");
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? cmd.Parameters.Clear();
? ? ? ? ? ? }
? ? ? ? ? ? tx.Commit();
? ? ? ? ? ? return 1;
? ? ? ? }
? ? ? ? catch (System.Data.SqlClient.SqlException e)
? ? ? ? {
? ? ? ? ? ? tx.Rollback();
? ? ? ? ? ? throw e;
? ? ? ? }
? ? ? ? catch (Exception e)
? ? ? ? {
? ? ? ? ? ? tx.Rollback();
? ? ? ? ? ? throw e;
? ? ? ? }
? ? }
}


///?
/// 执行多条SQL语句,实现数据库事务。
///?
///?多条SQL语句		
public static int ExecuteSqlTran(List?SQLStringList)
{
? ? using (SqlConnection conn = new SqlConnection(connectionString))
? ? {
? ? ? ? conn.Open();
? ? ? ? SqlCommand cmd = new SqlCommand();
? ? ? ? cmd.Connection = conn;
? ? ? ? SqlTransaction tx = conn.BeginTransaction();
? ? ? ? cmd.Transaction = tx;
? ? ? ? try
? ? ? ? {
? ? ? ? ? ? int count = 0;
? ? ? ? ? ? for (int n = 0; n < SQLStringList.Count; n++)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? string strsql = SQLStringList[n];
? ? ? ? ? ? ? ? if (strsql.Trim().Length > 1)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? cmd.CommandText = strsql;
? ? ? ? ? ? ? ? ? ? count += cmd.ExecuteNonQuery();
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? tx.Commit();
? ? ? ? ? ? return count;
? ? ? ? }
? ? ? ? catch
? ? ? ? {
? ? ? ? ? ? tx.Rollback();
? ? ? ? ? ? return 0;
? ? ? ? }
? ? }
}


///?
/// 执行带一个存储过程参数的的SQL语句。
///?
///?SQL语句
///?参数内容,比如一个字段是格式复杂的文章,有特殊符号,可以通过这个方式添加
///?影响的记录数
public static int ExecuteSql(string SQLString, string content)
{
? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? SqlCommand cmd = new SqlCommand(SQLString, connection);
? ? ? ? System.Data.SqlClient.SqlParameter myParameter = new System.Data.SqlClient.SqlParameter("@content", SqlDbType.NText);
? ? ? ? myParameter.Value = content;
? ? ? ? cmd.Parameters.Add(myParameter);
? ? ? ? try
? ? ? ? {
? ? ? ? ? ? connection.Open();
? ? ? ? ? ? int rows = cmd.ExecuteNonQuery();
? ? ? ? ? ? return rows;
? ? ? ? }
? ? ? ? catch (System.Data.SqlClient.SqlException e)
? ? ? ? {
? ? ? ? ? ? throw e;
? ? ? ? }
? ? ? ? finally
? ? ? ? {
? ? ? ? ? ? cmd.Dispose();
? ? ? ? ? ? connection.Close();
? ? ? ? }
? ? }
}


///?
/// 执行带一个存储过程参数的的SQL语句。
///?
///?SQL语句
///?参数内容,比如一个字段是格式复杂的文章,有特殊符号,可以通过这个方式添加
///?影响的记录数
public static object ExecuteSqlGet(string SQLString, string content)
{
? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? SqlCommand cmd = new SqlCommand(SQLString, connection);
? ? ? ? System.Data.SqlClient.SqlParameter myParameter = new System.Data.SqlClient.SqlParameter("@content", SqlDbType.NText);
? ? ? ? myParameter.Value = content;
? ? ? ? cmd.Parameters.Add(myParameter);
? ? ? ? try
? ? ? ? {
? ? ? ? ? ? connection.Open();
? ? ? ? ? ? object obj = cmd.ExecuteScalar();
? ? ? ? ? ? if ((Object.Equals(obj, null)) || (Object.Equals(obj, System.DBNull.Value)))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? return null;
? ? ? ? ? ? }
? ? ? ? ? ? else
? ? ? ? ? ? {
? ? ? ? ? ? ? ? return obj;
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? catch (System.Data.SqlClient.SqlException e)
? ? ? ? {
? ? ? ? ? ? throw e;
? ? ? ? }
? ? ? ? finally
? ? ? ? {
? ? ? ? ? ? cmd.Dispose();
? ? ? ? ? ? connection.Close();
? ? ? ? }
? ? }
}


///?
/// 向数据库里插入图像格式的字段(和上面情况类似的另一种实例)
///?
///?SQL语句
///?图像字节,数据库的字段类型为image的情况
///?影响的记录数
public static int ExecuteSqlInsertImg(string strSQL, byte[] fs)
{
? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? SqlCommand cmd = new SqlCommand(strSQL, connection);
? ? ? ? System.Data.SqlClient.SqlParameter myParameter = new System.Data.SqlClient.SqlParameter("@fs", SqlDbType.Image);
? ? ? ? myParameter.Value = fs;
? ? ? ? cmd.Parameters.Add(myParameter);
? ? ? ? try
? ? ? ? {
? ? ? ? ? ? connection.Open();
? ? ? ? ? ? int rows = cmd.ExecuteNonQuery();
? ? ? ? ? ? return rows;
? ? ? ? }
? ? ? ? catch (System.Data.SqlClient.SqlException e)
? ? ? ? {
? ? ? ? ? ? throw e;
? ? ? ? }
? ? ? ? finally
? ? ? ? {
? ? ? ? ? ? cmd.Dispose();
? ? ? ? ? ? connection.Close();
? ? ? ? }
? ? }
}


///?
/// 执行一条计算查询结果语句,返回查询结果(object)。
///?
///?计算查询结果语句
///?查询结果(object)
public static object GetSingle(string SQLString)
{
? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? using (SqlCommand cmd = new SqlCommand(SQLString, connection))
? ? ? ? {
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? connection.Open();
? ? ? ? ? ? ? ? object obj = cmd.ExecuteScalar();
? ? ? ? ? ? ? ? if ((Object.Equals(obj, null)) || (Object.Equals(obj, System.DBNull.Value)))
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? return null;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? else
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? return obj;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? catch (System.Data.SqlClient.SqlException e)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? connection.Close();
? ? ? ? ? ? ? ? throw e;
? ? ? ? ? ? }
? ? ? ? }
? ? }
}


//执行SQL,设置超时时间
public static object GetSingle(string SQLString, int Times)
{
? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? using (SqlCommand cmd = new SqlCommand(SQLString, connection))
? ? ? ? {
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? connection.Open();
? ? ? ? ? ? ? ? cmd.CommandTimeout = Times;
? ? ? ? ? ? ? ? object obj = cmd.ExecuteScalar();
? ? ? ? ? ? ? ? if ((Object.Equals(obj, null)) || (Object.Equals(obj, System.DBNull.Value)))
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? return null;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? else
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? return obj;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? catch (System.Data.SqlClient.SqlException e)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? connection.Close();
? ? ? ? ? ? ? ? throw e;
? ? ? ? ? ? }
? ? ? ? }
? ? }
}


///?
/// 执行查询语句,返回SqlDataReader
///?查询语句
///?SqlDataReader
public static SqlDataReader ExecuteReader(string strSQL)
{
? ? SqlConnection connection = new SqlConnection(connectionString);
? ? SqlCommand cmd = new SqlCommand(strSQL, connection);
? ? try
? ? {
? ? ? ? connection.Open();
? ? ? ? SqlDataReader myReader = cmd.ExecuteReader(CommandBehavior.CloseConnection);
? ? ? ? return myReader;
? ? }
? ? catch (System.Data.SqlClient.SqlException e)
? ? {
? ? ? ? throw e;
? ? }


}


///?
/// 执行查询语句,返回DataSet
///?
///?查询语句
///?DataSet
public static DataSet Query(string SQLString)
{


? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? DataSet ds = new DataSet();
? ? ? ? try
? ? ? ? {
? ? ? ? ? ? connection.Open();
? ? ? ? ? ? SqlDataAdapter command = new SqlDataAdapter(SQLString, connection);
? ? ? ? ? ? command.Fill(ds, "ds");
? ? ? ? }
? ? ? ? catch (System.Data.SqlClient.SqlException ex)
? ? ? ? {
? ? ? ? ? ? throw new Exception(ex.Message);
? ? ? ? }
? ? ? ? return ds;
? ? }


}


public static DataSet Query(string SQLString, int Times)
{
? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? DataSet ds = new DataSet();
? ? ? ? try
? ? ? ? {
? ? ? ? ? ? connection.Open();
? ? ? ? ? ? SqlDataAdapter command = new SqlDataAdapter(SQLString, connection);
? ? ? ? ? ? command.SelectCommand.CommandTimeout = Times;
? ? ? ? ? ? command.Fill(ds, "ds");
? ? ? ? }
? ? ? ? catch (System.Data.SqlClient.SqlException ex)
? ? ? ? {
? ? ? ? ? ? throw new Exception(ex.Message);
? ? ? ? }
? ? ? ? return ds;
? ? }
}


///?
/// 执行查询语句,返回DataSet
///?
///?SqlConnection对象
///?SqlTransaction事务
///?SQL语句
///?DataSet
public static DataSet Query(SqlConnection connection, SqlTransaction trans, string SQLString)
{
? ? DataSet ds = new DataSet();
? ? try
? ? {
? ? ? ? SqlDataAdapter command = new SqlDataAdapter(SQLString, connection);
? ? ? ? command.SelectCommand.Transaction = trans;
? ? ? ? command.Fill(ds, "ds");
? ? }
? ? catch (System.Data.SqlClient.SqlException ex)
? ? {
? ? ? ? throw new Exception(ex.Message);
? ? }
? ? return ds;


}
#endregion

执行带参数的SQL语句

#region 执行带参数的SQL语句


///?
/// 执行SQL语句,返回影响的记录数
///?
///?SQL语句
///?影响的记录数
public static int ExecuteSql(string SQLString, params SqlParameter[] cmdParms)
{
? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? using (SqlCommand cmd = new SqlCommand())
? ? ? ? {
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? PrepareCommand(cmd, connection, null, SQLString, cmdParms);
? ? ? ? ? ? ? ? int rows = cmd.ExecuteNonQuery();
? ? ? ? ? ? ? ? cmd.Parameters.Clear();
? ? ? ? ? ? ? ? return rows;
? ? ? ? ? ? }
? ? ? ? ? ? catch (System.Data.SqlClient.SqlException e)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? throw e;
? ? ? ? ? ? }
? ? ? ? }
? ? }
}


///?
/// 执行SQL语句,返回影响的记录数
///?
///?SqlConnection对象
///?SqlTransaction对象
///?SQL语句
///?影响的记录数
public static int ExecuteSql(SqlConnection connection, SqlTransaction trans, string SQLString, params SqlParameter[] cmdParms)
{
? ? using (SqlCommand cmd = new SqlCommand())
? ? {
? ? ? ? try
? ? ? ? {
? ? ? ? ? ? PrepareCommand(cmd, connection, trans, SQLString, cmdParms);
? ? ? ? ? ? int rows = cmd.ExecuteNonQuery();
? ? ? ? ? ? cmd.Parameters.Clear();
? ? ? ? ? ? return rows;
? ? ? ? }
? ? ? ? catch (System.Data.SqlClient.SqlException e)
? ? ? ? {
? ? ? ? ? ? //trans.Rollback();
? ? ? ? ? ? throw e;
? ? ? ? }
? ? }
}


///?
/// 执行多条SQL语句,实现数据库事务。
///?
///?SQL语句的哈希表(key为sql语句,value是该语句的SqlParameter[])
public static void ExecuteSqlTran(Hashtable SQLStringList)
{
? ? using (SqlConnection conn = new SqlConnection(connectionString))
? ? {
? ? ? ? conn.Open();
? ? ? ? using (SqlTransaction trans = conn.BeginTransaction())
? ? ? ? {
? ? ? ? ? ? SqlCommand cmd = new SqlCommand();
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? //循环
? ? ? ? ? ? ? ? foreach (DictionaryEntry myDE in SQLStringList)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? string cmdText = myDE.Key.ToString();
? ? ? ? ? ? ? ? ? ? SqlParameter[] cmdParms = (SqlParameter[])myDE.Value;
? ? ? ? ? ? ? ? ? ? PrepareCommand(cmd, conn, trans, cmdText, cmdParms);
? ? ? ? ? ? ? ? ? ? int val = cmd.ExecuteNonQuery();
? ? ? ? ? ? ? ? ? ? cmd.Parameters.Clear();
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? trans.Commit();
? ? ? ? ? ? }
? ? ? ? ? ? catch
? ? ? ? ? ? {
? ? ? ? ? ? ? ? trans.Rollback();
? ? ? ? ? ? ? ? throw;
? ? ? ? ? ? }
? ? ? ? }
? ? }
}


///?
/// 执行多条SQL语句,实现数据库事务。
///?
///?SQL语句的哈希表(key为sql语句,value是该语句的SqlParameter[])
public static int ExecuteSqlTran(System.Collections.Generic.List?cmdList)
{
? ? using (SqlConnection conn = new SqlConnection(connectionString))
? ? {
? ? ? ? conn.Open();
? ? ? ? using (SqlTransaction trans = conn.BeginTransaction())
? ? ? ? {
? ? ? ? ? ? SqlCommand cmd = new SqlCommand();
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? int count = 0;
? ? ? ? ? ? ? ? //循环
? ? ? ? ? ? ? ? foreach (CommandInfo myDE in cmdList)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? string cmdText = myDE.CommandText;
? ? ? ? ? ? ? ? ? ? SqlParameter[] cmdParms = (SqlParameter[])myDE.Parameters;
? ? ? ? ? ? ? ? ? ? PrepareCommand(cmd, conn, trans, cmdText, cmdParms);


? ? ? ? ? ? ? ? ? ? if (myDE.EffentNextType == EffentNextType.WhenHaveContine || myDE.EffentNextType == EffentNextType.WhenNoHaveContine)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? if (myDE.CommandText.ToLower().IndexOf("count(") == -1)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? trans.Rollback();
? ? ? ? ? ? ? ? ? ? ? ? ? ? return 0;
? ? ? ? ? ? ? ? ? ? ? ? }


? ? ? ? ? ? ? ? ? ? ? ? object obj = cmd.ExecuteScalar();
? ? ? ? ? ? ? ? ? ? ? ? bool isHave = false;
? ? ? ? ? ? ? ? ? ? ? ? if (obj == null && obj == DBNull.Value)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? isHave = false;
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? isHave = Convert.ToInt32(obj) > 0;


? ? ? ? ? ? ? ? ? ? ? ? if (myDE.EffentNextType == EffentNextType.WhenHaveContine && !isHave)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? trans.Rollback();
? ? ? ? ? ? ? ? ? ? ? ? ? ? return 0;
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? if (myDE.EffentNextType == EffentNextType.WhenNoHaveContine && isHave)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? trans.Rollback();
? ? ? ? ? ? ? ? ? ? ? ? ? ? return 0;
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? continue;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? int val = cmd.ExecuteNonQuery();
? ? ? ? ? ? ? ? ? ? count += val;
? ? ? ? ? ? ? ? ? ? if (myDE.EffentNextType == EffentNextType.ExcuteEffectRows && val == 0)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? trans.Rollback();
? ? ? ? ? ? ? ? ? ? ? ? return 0;
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? cmd.Parameters.Clear();
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? trans.Commit();
? ? ? ? ? ? ? ? return count;
? ? ? ? ? ? }
? ? ? ? ? ? catch
? ? ? ? ? ? {
? ? ? ? ? ? ? ? trans.Rollback();
? ? ? ? ? ? ? ? throw;
? ? ? ? ? ? }
? ? ? ? }
? ? }
}


///?
/// 执行多条SQL语句,实现数据库事务。
///?
///?SQL语句的哈希表(key为sql语句,value是该语句的SqlParameter[])
public static void ExecuteSqlTranWithIndentity(System.Collections.Generic.List?SQLStringList)
{
? ? using (SqlConnection conn = new SqlConnection(connectionString))
? ? {
? ? ? ? conn.Open();
? ? ? ? using (SqlTransaction trans = conn.BeginTransaction())
? ? ? ? {
? ? ? ? ? ? SqlCommand cmd = new SqlCommand();
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? int indentity = 0;
? ? ? ? ? ? ? ? //循环
? ? ? ? ? ? ? ? foreach (CommandInfo myDE in SQLStringList)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? string cmdText = myDE.CommandText;
? ? ? ? ? ? ? ? ? ? SqlParameter[] cmdParms = (SqlParameter[])myDE.Parameters;
? ? ? ? ? ? ? ? ? ? foreach (SqlParameter q in cmdParms)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? if (q.Direction == ParameterDirection.InputOutput)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? q.Value = indentity;
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? PrepareCommand(cmd, conn, trans, cmdText, cmdParms);
? ? ? ? ? ? ? ? ? ? int val = cmd.ExecuteNonQuery();
? ? ? ? ? ? ? ? ? ? foreach (SqlParameter q in cmdParms)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? if (q.Direction == ParameterDirection.Output)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? indentity = Convert.ToInt32(q.Value);
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? cmd.Parameters.Clear();
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? trans.Commit();
? ? ? ? ? ? }
? ? ? ? ? ? catch
? ? ? ? ? ? {
? ? ? ? ? ? ? ? trans.Rollback();
? ? ? ? ? ? ? ? throw;
? ? ? ? ? ? }
? ? ? ? }
? ? }
}


///?
/// 执行多条SQL语句,实现数据库事务。
///?
///?SQL语句的哈希表(key为sql语句,value是该语句的SqlParameter[])
public static void ExecuteSqlTranWithIndentity(Hashtable SQLStringList)
{
? ? using (SqlConnection conn = new SqlConnection(connectionString))
? ? {
? ? ? ? conn.Open();
? ? ? ? using (SqlTransaction trans = conn.BeginTransaction())
? ? ? ? {
? ? ? ? ? ? SqlCommand cmd = new SqlCommand();
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? int indentity = 0;
? ? ? ? ? ? ? ? //循环
? ? ? ? ? ? ? ? foreach (DictionaryEntry myDE in SQLStringList)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? string cmdText = myDE.Key.ToString();
? ? ? ? ? ? ? ? ? ? SqlParameter[] cmdParms = (SqlParameter[])myDE.Value;
? ? ? ? ? ? ? ? ? ? foreach (SqlParameter q in cmdParms)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? if (q.Direction == ParameterDirection.InputOutput)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? q.Value = indentity;
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? PrepareCommand(cmd, conn, trans, cmdText, cmdParms);
? ? ? ? ? ? ? ? ? ? int val = cmd.ExecuteNonQuery();
? ? ? ? ? ? ? ? ? ? foreach (SqlParameter q in cmdParms)
? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? if (q.Direction == ParameterDirection.Output)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? indentity = Convert.ToInt32(q.Value);
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? cmd.Parameters.Clear();
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? trans.Commit();
? ? ? ? ? ? }
? ? ? ? ? ? catch
? ? ? ? ? ? {
? ? ? ? ? ? ? ? trans.Rollback();
? ? ? ? ? ? ? ? throw;
? ? ? ? ? ? }
? ? ? ? }
? ? }
}


///?
/// 执行一条计算查询结果语句,返回查询结果(object)。
///?
///?计算查询结果语句
///?查询结果(object)
public static object GetSingle(string SQLString, params SqlParameter[] cmdParms)
{
? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? using (SqlCommand cmd = new SqlCommand())
? ? ? ? {
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? PrepareCommand(cmd, connection, null, SQLString, cmdParms);
? ? ? ? ? ? ? ? object obj = cmd.ExecuteScalar();
? ? ? ? ? ? ? ? cmd.Parameters.Clear();
? ? ? ? ? ? ? ? if ((Object.Equals(obj, null)) || (Object.Equals(obj, System.DBNull.Value)))
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? return null;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? else
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? return obj;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? catch (System.Data.SqlClient.SqlException e)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? throw e;
? ? ? ? ? ? }
? ? ? ? }
? ? }
}


///?
/// 执行一条计算查询结果语句,返回查询结果(object)。
///?
///?SqlConnection对象
///?SqlTransaction事务
///?计算查询结果语句
///?查询结果(object)
public static object GetSingle(SqlConnection connection, SqlTransaction trans, string SQLString, params SqlParameter[] cmdParms)
{
? ? using (SqlCommand cmd = new SqlCommand())
? ? {
? ? ? ? try
? ? ? ? {
? ? ? ? ? ? PrepareCommand(cmd, connection, trans, SQLString, cmdParms);
? ? ? ? ? ? object obj = cmd.ExecuteScalar();
? ? ? ? ? ? cmd.Parameters.Clear();
? ? ? ? ? ? if ((Object.Equals(obj, null)) || (Object.Equals(obj, System.DBNull.Value)))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? return null;
? ? ? ? ? ? }
? ? ? ? ? ? else
? ? ? ? ? ? {
? ? ? ? ? ? ? ? return obj;
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? catch (System.Data.SqlClient.SqlException e)
? ? ? ? {
? ? ? ? ? ? //trans.Rollback();
? ? ? ? ? ? throw e;
? ? ? ? }
? ? }
}


///?
/// 执行查询语句,返回SqlDataReader
///?查询语句
///?SqlDataReader
public static SqlDataReader ExecuteReader(string SQLString, params SqlParameter[] cmdParms)
{
? ? SqlConnection connection = new SqlConnection(connectionString);
? ? SqlCommand cmd = new SqlCommand();
? ? try
? ? {
? ? ? ? PrepareCommand(cmd, connection, null, SQLString, cmdParms);
? ? ? ? SqlDataReader myReader = cmd.ExecuteReader(CommandBehavior.CloseConnection);
? ? ? ? cmd.Parameters.Clear();
? ? ? ? return myReader;
? ? }
? ? catch (System.Data.SqlClient.SqlException e)
? ? {
? ? ? ? throw e;
? ? }
}


///?
/// 执行查询语句,返回DataSet
///?
///?查询语句
///?DataSet
public static DataSet Query(string SQLString, params SqlParameter[] cmdParms)
{
? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? SqlCommand cmd = new SqlCommand();
? ? ? ? PrepareCommand(cmd, connection, null, SQLString, cmdParms);
? ? ? ? using (SqlDataAdapter da = new SqlDataAdapter(cmd))
? ? ? ? {
? ? ? ? ? ? DataSet ds = new DataSet();
? ? ? ? ? ? try
? ? ? ? ? ? {
? ? ? ? ? ? ? ? da.Fill(ds, "ds");
? ? ? ? ? ? ? ? cmd.Parameters.Clear();
? ? ? ? ? ? }
? ? ? ? ? ? catch (System.Data.SqlClient.SqlException ex)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? throw new Exception(ex.Message);
? ? ? ? ? ? }
? ? ? ? ? ? return ds;
? ? ? ? }
? ? }
}


///?
/// 执行查询语句,返回DataSet
///?
///?SqlConnection对象
///?SqlTransaction事务
///?查询语句
///?DataSet
public static DataSet Query(SqlConnection connection, SqlTransaction trans, string SQLString, params SqlParameter[] cmdParms)
{
? ? SqlCommand cmd = new SqlCommand();
? ? PrepareCommand(cmd, connection, trans, SQLString, cmdParms);
? ? using (SqlDataAdapter da = new SqlDataAdapter(cmd))
? ? {
? ? ? ? DataSet ds = new DataSet();
? ? ? ? try
? ? ? ? {
? ? ? ? ? ? da.Fill(ds, "ds");
? ? ? ? ? ? cmd.Parameters.Clear();
? ? ? ? }
? ? ? ? catch (System.Data.SqlClient.SqlException ex)
? ? ? ? {
? ? ? ? ? ? //trans.Rollback();
? ? ? ? ? ? throw new Exception(ex.Message);
? ? ? ? }
? ? ? ? return ds;
? ? }
}


private static void PrepareCommand(SqlCommand cmd, SqlConnection conn, SqlTransaction trans, string cmdText, SqlParameter[] cmdParms)
{
? ? if (conn.State != ConnectionState.Open)
? ? ? ? conn.Open();
? ? cmd.Connection = conn;
? ? cmd.CommandText = cmdText;
? ? if (trans != null)
? ? ? ? cmd.Transaction = trans;
? ? cmd.CommandType = CommandType.Text;//cmdType;
? ? if (cmdParms != null)
? ? {




? ? ? ? foreach (SqlParameter parameter in cmdParms)
? ? ? ? {
? ? ? ? ? ? if ((parameter.Direction == ParameterDirection.InputOutput || parameter.Direction == ParameterDirection.Input) &&
? ? ? ? ? ? ? ? (parameter.Value == null))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? parameter.Value = DBNull.Value;
? ? ? ? ? ? }
? ? ? ? ? ? cmd.Parameters.Add(parameter);
? ? ? ? }
? ? }
}


#endregion

存储过程操作

#region 存储过程操作
///?
/// 执行存储过程,返回SqlDataReader ( 注意:调用该方法后,一定要对SqlDataReader进行Close )
///?
///?存储过程名
///?存储过程参数
///?SqlDataReader
public static SqlDataReader RunProcedure(string storedProcName, IDataParameter[] parameters)
{
? ? SqlConnection connection = new SqlConnection(connectionString);
? ? SqlDataReader returnReader;
? ? connection.Open();
? ? SqlCommand command = BuildQueryCommand(connection, storedProcName, parameters);
? ? command.CommandType = CommandType.StoredProcedure;
? ? returnReader = command.ExecuteReader(CommandBehavior.CloseConnection);
? ? return returnReader;
}


///?
/// 执行存储过程
///?
///?存储过程名
///?存储过程参数
///?DataSet结果中的表名
///?DataSet
public static DataSet RunProcedure(string storedProcName, IDataParameter[] parameters, string tableName)
{
? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? DataSet dataSet = new DataSet();
? ? ? ? connection.Open();
? ? ? ? SqlDataAdapter sqlDA = new SqlDataAdapter();
? ? ? ? sqlDA.SelectCommand = BuildQueryCommand(connection, storedProcName, parameters);
? ? ? ? sqlDA.Fill(dataSet, tableName);
? ? ? ? connection.Close();
? ? ? ? return dataSet;
? ? }
}


///?
/// 构建 SqlCommand 对象(用来返回一个结果集,而不是一个整数值)
///?
///?数据库连接
///?存储过程名
///?存储过程参数
///?SqlCommand
private static SqlCommand BuildQueryCommand(SqlConnection connection, string storedProcName, IDataParameter[] parameters)
{
? ? SqlCommand command = new SqlCommand(storedProcName, connection);
? ? command.CommandType = CommandType.StoredProcedure;
? ? foreach (SqlParameter parameter in parameters)
? ? {
? ? ? ? if (parameter != null)
? ? ? ? {
? ? ? ? ? ? // 检查未分配值的输出参数,将其分配以DBNull.Value.
? ? ? ? ? ? if ((parameter.Direction == ParameterDirection.InputOutput || parameter.Direction == ParameterDirection.Input) &&
? ? ? ? ? ? ? ? (parameter.Value == null))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? parameter.Value = DBNull.Value;
? ? ? ? ? ? }
? ? ? ? ? ? command.Parameters.Add(parameter);
? ? ? ? }
? ? }


? ? return command;
}


///?
/// 执行存储过程,返回影响的行数		
///?
///?存储过程名
///?存储过程参数
///?影响的行数
///?
public static int RunProcedure(string storedProcName, IDataParameter[] parameters, out int rowsAffected)
{
? ? using (SqlConnection connection = new SqlConnection(connectionString))
? ? {
? ? ? ? int result;
? ? ? ? connection.Open();
? ? ? ? SqlCommand command = BuildIntCommand(connection, storedProcName, parameters);
? ? ? ? rowsAffected = command.ExecuteNonQuery();
? ? ? ? result = (int)command.Parameters["ReturnValue"].Value;
? ? ? ? //Connection.Close();
? ? ? ? return result;
? ? }
}


///?
/// 创建 SqlCommand 对象实例(用来返回一个整数值)	
///?
///?存储过程名
///?存储过程参数
///?SqlCommand 对象实例
private static SqlCommand BuildIntCommand(SqlConnection connection, string storedProcName, IDataParameter[] parameters)
{
? ? SqlCommand command = BuildQueryCommand(connection, storedProcName, parameters);
? ? command.Parameters.Add(new SqlParameter("ReturnValue",
? ? ? ? SqlDbType.Int, 4, ParameterDirection.ReturnValue,
? ? ? ? false, 0, 0, string.Empty, DataRowVersion.Default, null));
? ? return command;
}
#endregion

以上就实现了对数据的所有操作,快去试试吧。

相关推荐

驱动网卡(怎么从新驱动网卡)
驱动网卡(怎么从新驱动网卡)

网卡一般是指为电脑主机提供有线无线网络功能的适配器。而网卡驱动指的就是电脑连接识别这些网卡型号的桥梁。网卡只有打上了网卡驱动才能正常使用。并不是说所有的网卡一插到电脑上面就能进行数据传输了,他都需要里面芯片组的驱动文件才能支持他进行数据传输...

2026-01-30 00:37 liuian

win10更新助手装系统(微软win10更新助手)

1、点击首页“系统升级”的按钮,给出弹框,告诉用户需要上传IMEI码才能使用升级服务。同时给出同意和取消按钮。华为手机助手2、点击同意,则进入到“系统升级”功能华为手机助手华为手机助手3、在检测界面,...

windows11专业版密钥最新(windows11专业版激活码永久)

 Windows11专业版的正版密钥,我们是对windows的激活所必备的工具。该密钥我们可以通过微软商城或者通过计算机的硬件供应商去购买获得。获得了windows11专业版的正版密钥后,我...

手机删过的软件恢复(手机删除过的软件怎么恢复)
手机删过的软件恢复(手机删除过的软件怎么恢复)

操作步骤:1、首先,我们需要先打开手机。然后在许多图标中找到带有[文件管理]文本的图标,然后单击“文件管理”进入页面。2、进入页面后,我们将在顶部看到一行文本:手机,最新信息,文档,视频,图片,音乐,收藏,最后是我们正在寻找的[更多],单击...

2026-01-29 23:55 liuian

一键ghost手动备份系统步骤(一键ghost 备份)

  步骤1、首先把装有一键GHOST装系统的U盘插在电脑上,然后打开电脑马上按F2或DEL键入BIOS界面,然后就选择BOOT打USDHDD模式选择好,然后按F10键保存,电脑就会马上重启。  步骤...

怎么创建局域网(怎么创建局域网打游戏)

  1、购买路由器一台。进入路由器把dhcp功能打开  2、购买一台交换机。从路由器lan端口拉出一条网线查到交换机的任意一个端口上。  3、两台以上电脑。从交换机任意端口拉出网线插到电脑上(电脑设置...

精灵驱动器官方下载(精灵驱动手机版下载)

是的。驱动精灵是一款集驱动管理和硬件检测于一体的、专业级的驱动管理和维护工具。驱动精灵为用户提供驱动备份、恢复、安装、删除、在线更新等实用功能。1、全新驱动精灵2012引擎,大幅提升硬件和驱动辨识能力...

一键还原系统步骤(一键还原系统有哪些)

1、首先需要下载安装一下Windows一键还原程序,在安装程序窗口中,点击“下一步”,弹出“用户许可协议”窗口,选择“我同意该许可协议的条款”,并点击“下一步”。  2、在弹出的“准备安装”窗口中,可...

电脑加速器哪个好(电脑加速器哪款好)

我认为pp加速器最好用,飞速土豆太懒,急速酷六根本不工作。pp加速器什么网页都加速,太任劳任怨了!以上是个人观点,具体性能请自己试。ps:我家电脑性能很好。迅游加速盒子是可以加速电脑的。因为有过之...

任何u盘都可以做启动盘吗(u盘必须做成启动盘才能装系统吗)

是的,需要注意,U盘的大小要在4G以上,最好是8G以上,因为启动盘里面需要装系统,内存小的话,不能用来安装系统。内存卡或者U盘或者移动硬盘都可以用来做启动盘安装系统。普通的U盘就可以,不过最好U盘...

u盘怎么恢复文件(u盘文件恢复的方法)

开360安全卫士,点击上面的“功能大全”。点击文件恢复然后点击“数据”下的“文件恢复”功能。选择驱动接着选择需要恢复的驱动,选择接入的U盘。点击开始扫描选好就点击中间的“开始扫描”,开始扫描U盘数据。...

系统虚拟内存太低怎么办(系统虚拟内存占用过高什么原因)

1.检查系统虚拟内存使用情况,如果发现有大量的空闲内存,可以尝试释放一些不必要的进程,以释放内存空间。2.如果系统虚拟内存使用率较高,可以尝试增加系统虚拟内存的大小,以便更多的应用程序可以使用更多...

剪贴板权限设置方法(剪贴板访问权限)
剪贴板权限设置方法(剪贴板访问权限)

1、首先打开iphone手机,触碰并按住单词或图像直到显示选择选项。2、其次,然后选取“拷贝”或“剪贴板”。3、勾选需要的“权限”,最后选择开启,即可完成苹果剪贴板权限设置。仅参考1.打开苹果手机设置按钮,点击【通用】。2.点击【键盘】,再...

2026-01-29 21:37 liuian

平板系统重装大师(平板重装win系统)

如果你的平板开不了机,但可以连接上电脑,那就能好办,楼主下载安装个平板刷机王到你的个人电脑上,然后连接你的平板,平板刷机王会自动识别你的平板,平板刷机王上有你平板的我刷机包,楼主点击下载一个,下载完成...

联想官网售后服务网点(联想官网售后服务热线)

联想3c服务中心是联想旗下的官方售后,是基于互联网O2O模式开发的全新服务平台。可以为终端用户提供多品牌手机、电脑以及其他3C类产品的维修、保养和保险服务。根据客户需求层次,联想服务针对个人及家庭客户...