-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
144 lines (127 loc) · 3.47 KB
/
Program.cs
File metadata and controls
144 lines (127 loc) · 3.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
using System;
using System.Data;
using System.Data.SqlClient;
namespace TestSqlTransaction
{
class Program
{
private static string ConnectionString =
"Data Source= . . . ";
static void Main(string[] args)
{
Console.WriteLine("Test1");
Test1();
Console.WriteLine("");
Console.WriteLine("Test2");
Test2();
}
static void Test1()
{
SqlTransaction transaction = null;
try
{
using (SqlConnection connection = new SqlConnection(ConnectionString))
{
connection.Open();
transaction = connection.BeginTransaction(IsolationLevel.ReadCommitted);
using (SqlCommand cmd1 = connection.CreateCommand())
{
cmd1.Connection = connection;
cmd1.Transaction = transaction;
cmd1.CommandText =
@"CREATE TABLE TEST_SCHEME(
[NAME] [nvarchar](129) NULL,
[INSTID] [int] NOT NULL)";
cmd1.ExecuteNonQuery();
}
using (SqlCommand insertCmd = connection.CreateCommand())
{
insertCmd.Connection = connection;
insertCmd.Transaction = transaction;
for (int i = 0; i < 2; i++)
{
insertCmd.CommandText = $"INSERT INTO TEST_SCHEME (NAME, INSTID) VALUES ('Test', {i})";
insertCmd.ExecuteNonQuery();
}
}
using (SqlCommand cmdIndex = connection.CreateCommand())
{
cmdIndex.Connection = connection;
cmdIndex.Transaction = transaction;
cmdIndex.CommandText = "CREATE UNIQUE INDEX C216_K1 ON TEST_SCHEME (NAME ASC )";
cmdIndex.ExecuteNonQuery();
}
transaction.Commit();
}
}
catch (Exception ex)
{
string message = ex.Message;
Console.WriteLine(message);
try
{
transaction?.Rollback();
}
catch (Exception sqlException)
{
string msg = sqlException.Message;
Console.WriteLine($"Wrong behavior Exception :{msg}");
}
}
}
static void Test2()
{
SqlTransaction transaction = null;
try
{
using (SqlConnection connection = new SqlConnection(ConnectionString))
{
connection.Open();
transaction = connection.BeginTransaction(IsolationLevel.ReadCommitted);
using (SqlCommand cmd1 = connection.CreateCommand())
{
cmd1.Connection = connection;
cmd1.Transaction = transaction;
cmd1.CommandText =
@"CREATE TABLE TEST_SCHEME(
[NAME] [nvarchar](129) NULL,
[INSTID] [int] NOT NULL)";
cmd1.ExecuteNonQuery();
}
using (SqlCommand cmdIndex = connection.CreateCommand())
{
cmdIndex.Connection = connection;
cmdIndex.Transaction = transaction;
cmdIndex.CommandText = "CREATE UNIQUE INDEX C216_K1 ON TEST_SCHEME (NAME ASC )";
cmdIndex.ExecuteNonQuery();
}
using (SqlCommand insertCmd = connection.CreateCommand())
{
insertCmd.Connection = connection;
insertCmd.Transaction = transaction;
for (int i = 0; i < 2; i++)
{
insertCmd.CommandText = $"INSERT INTO TEST_SCHEME (NAME,INSTID) VALUES ('Test', {i})";
insertCmd.ExecuteNonQuery();
}
}
transaction.Commit();
}
}
catch (Exception ex)
{
string message = ex.Message;
Console.WriteLine(message);
try
{
transaction?.Rollback();
}
catch (Exception sqlException)
{
string msg = sqlException.Message;
Console.WriteLine($"Wrong behavior Exception :{msg}");
}
}
}
}
}