-
Notifications
You must be signed in to change notification settings - Fork 0
/
MySQLTransactionHelper.cs
95 lines (85 loc) · 2.65 KB
/
MySQLTransactionHelper.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MySql.Data.MySqlClient;
namespace MCForge
{
namespace SQL
{
class MySQLTransactionHelper : DatabaseTransactionHelper
{
private MySqlConnection connection = null;
private MySqlTransaction transaction = null;
public MySQLTransactionHelper(){
init(MySQL.connString);
}
public MySQLTransactionHelper(string connString)
{
init(connString);
}
private void init(string connString) {
connection = new MySqlConnection(connString);
connection.Open();
connection.ChangeDatabase(Server.MySQLDatabaseName);
transaction = connection.BeginTransaction();
}
public static DatabaseTransactionHelper Create() {
return Create(MySQL.connString);
}
public static DatabaseTransactionHelper Create(string connString)
{
try
{
return new MySQLTransactionHelper(connString);
}
catch (Exception ex)
{
Server.ErrorLog(ex);
return null;
}
}
public override void Execute(string query)
{
try {
using (MySqlCommand cmd = new MySqlCommand(query, connection, transaction)) {
cmd.ExecuteNonQuery();
}
} catch (Exception e) {
System.IO.File.AppendAllText("MySQL_error.log", DateTime.Now + " " + query + "\r\n");
Server.ErrorLog(e);
}
}
public override void Commit()
{
try
{
transaction.Commit();
}
catch (Exception ex)
{
Server.ErrorLog(ex);
try
{
transaction.Rollback();
}
catch (Exception ex2)
{
Server.ErrorLog(ex2);
}
}
finally
{
connection.Close();
}
}
public override void Dispose()
{
transaction.Dispose();
connection.Dispose();
transaction = null;
connection = null;
}
}
}
}