标签:frame color ndt 打开 自己 style 方法 实现 命名空间
SqlTransaction trans = null; SqlConnection con = new Sqlconnection("数据库连接语句"); try { con.Open(); trans = con.BeginTransaction(); SqlCommand com = new SqlCommand(); //一下4步是要执行SqlParameter,如果不执行可以直接跳过使用com.CommandText="SQL语句"; com.CommandText = @"数据库语句 条件=@变量"; SqlParameter para = new SqlParameter("变量","值"); com.Parameters.Add(para); com.CommandText=com.CommandText; com.Connection=con; com.Transaction=trans; com.ExecuteNonQuery();//执行方式自己选择 trans.Commit();//执行提交事务 }catch { trans.Rollback();//如果前面有异常则事务回滚 } finally { con.Close(); }
标签:frame color ndt 打开 自己 style 方法 实现 命名空间
原文地址:https://www.cnblogs.com/Xanthus/p/9589519.html