coursedata.cs

来自「C#高级编程第6版随书源代码 值得下载」· CS 代码 · 共 46 行

CS
46
字号
using System;
using System.Data.SqlClient;
using System.Diagnostics;

namespace Wrox.ProCSharp.Transactions
{
    public class CourseData
    {
        public void AddCourse(Course c)
        {
            SqlConnection connection = new SqlConnection(Properties.Settings.Default.CourseManagementConnectionString);
            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", c.Number);
                courseCommand.Parameters.AddWithValue("@Title", c.Title);
                int rowResult = courseCommand.ExecuteNonQuery();
                if (rowResult != 1)
                {
                    throw new Exception("ex");
                }

                tx.Commit();
            }
            catch (Exception ex)
            {
                Console.WriteLine("error: {0}", ex.Message);
                tx.Rollback();
                Trace.WriteLine("Error: " + ex.Message);
            }
            connection.Close();
 
        }

        public void AddCourseDate(CourseDate courseDate)
        {
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?