program.cs
来自「C#高级编程第6版随书源代码 值得下载」· CS 代码 · 共 40 行
CS
40 行
using System;
using System.Data.SqlClient;
namespace Wrox.ProCSharp.Transactions
{
class Program
{
static void Main()
{
SqlConnection connection = new SqlConnection("server=(local);database=CourseManagement;trusted_connection=true");
SqlCommand courseCommand = connection.CreateCommand();
courseCommand.CommandText = "INSERT INTO Courses (Number, Title) VALUES (@Number, @Title)";
connection.Open();
SqlTransaction tx = connection.BeginTransaction();
try
{
courseCommand.Transaction = tx;
courseCommand.Parameters.AddWithValue("@Number", "2124");
courseCommand.Parameters.AddWithValue("@Title", "C# Programming");
int rowResult = courseCommand.ExecuteNonQuery();
if (rowResult != 1)
{
throw new Exception("ex");
}
tx.Commit();
}
catch (Exception ex)
{
Console.WriteLine("error: {0}", ex.Message);
tx.Rollback();
}
connection.Close();
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?