-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSQLiteDatabase.cs
More file actions
374 lines (330 loc) · 10.9 KB
/
Copy pathSQLiteDatabase.cs
File metadata and controls
374 lines (330 loc) · 10.9 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sipernasa
{
using System;
using System.Data.SQLite;
/// <summary>
/// Wraps around a Sqlite database to provide core functionality,
/// such as, create, open, close database etc...
/// </summary>
public class SQLiteDatabase
{
#region fields
private string _DBFilePath = @".\";
private string _DBFileName = "sipernasa.db";
private SQLiteConnection _Connection = null;
private bool _EnforceForeignKeys = true;
private bool _MutliThreadAccess = false;
#endregion fields
#region constructors
/// <summary>
/// Class Constructor
/// </summary>
public SQLiteDatabase(string dbFileName = null,
bool enforceForeignKeys = true,
bool mutliThreadAccess = false)
{
if (string.IsNullOrEmpty(dbFileName) == false)
_DBFileName = dbFileName;
Status = "Not connected - no connection initialized.";
ExtendendStatus = string.Empty;
this.Exception = null;
_EnforceForeignKeys = enforceForeignKeys;
_MutliThreadAccess = mutliThreadAccess;
}
#endregion constructors
#region properties
/// <summary>
/// Gets the name and path of the SQLite file in which the tree
/// model data is to be stored.
/// </summary>
public string DBFileNamePath
{
get
{
return System.IO.Path.Combine(_DBFilePath, _DBFileName);
}
}
/// <summary>
/// Gets whether Foreign Keys are:
/// - Enforced in the SQLite database file
/// (wrong values will result in exception on update or insert) or
///
/// - NOT enforced
/// (wrong values are ignored by SQLite).
/// </summary>
public bool EnforceForeignKeys { get { return _EnforceForeignKeys; } }
/// <summary>
/// Gets whether the SQLite database file can be accessed from within multiple
/// threads and/or connections or not.
/// </summary>
public bool MutliThreadAccess { get { return _MutliThreadAccess; } }
/// <summary>
/// Gets the Name of the SQLite file in which the tree
/// model data is to be stored.
/// </summary>
public string DBFileName
{
get
{
return _DBFileName;
}
}
/// <summary>
/// Gets the Path of the SQLite file in which the tree
/// model data is to be stored.
/// </summary>
public string DBFilePath
{
get
{
return _DBFilePath;
}
}
/// <summary>
/// Gets extended information on exceptions that might have
/// occurred to reach the current status.
/// </summary>
public Exception Exception
{
get;
set;
}
/// <summary>
/// Gets a textual description of the current SQLite database status.
/// </summary>
public string Status
{
get;
private set;
}
/// <summary>
/// Gets/sets additional error/state information (if any).
/// </summary>
public string ExtendendStatus
{
get;
set;
}
/// <summary>
/// Gets a connection object that can be uses
/// to interact with an existing and open SQLite database.
/// </summary>
public SQLiteConnection Connection
{
get
{
return _Connection;
}
}
/// <summary>
/// Gets whether the database connection is currently established (open), or not (false).
/// </summary>
public bool ConnectionState
{
get
{
try
{
if (_Connection != null)
{
if (_Connection.State == System.Data.ConnectionState.Open)
return true;
}
return false;
}
catch (Exception exp)
{
Status = exp.Message;
this.Exception = exp;
throw new Exception(exp.Message);
}
}
}
#endregion properties
#region methods
/// <summary>
/// Opens a connection to a SQLite database if there is none already open.
///
/// The previously existing database is deleted if <paramref name="overwriteFile"/>
/// is true.
/// </summary>
/// <param name="overwriteFile"></param>
public void OpenConnection(bool overwriteFile = false)
{
try
{
if (_Connection != null)
{
if (_Connection.State == System.Data.ConnectionState.Open)
return;
}
else
ConstructConnection(overwriteFile);
_Connection.Open();
}
catch (Exception exp)
{
Status = exp.Message;
this.Exception = exp;
throw new Exception(exp.Message);
}
}
/// <summary>
/// Closes any open connections to the SQLite database.
/// </summary>
public void CloseConnection()
{
try
{
if (ConnectionState == true)
_Connection.Close();
_Connection = null;
}
catch (Exception exp)
{
Status = exp.Message;
this.Exception = exp;
throw new Exception(exp.Message);
}
}
#region Pragma UserVersion
/// <summary>
/// Gets the current user version of the currently
/// opened database (or throws an exception if database was unavailable).
/// </summary>
/// <returns></returns>
public long UserVersion()
{
try
{
using (SQLiteCommand cmd = new SQLiteCommand(_Connection))
{
cmd.CommandText = "pragma user_version;";
return (long)cmd.ExecuteScalar();
}
}
catch (Exception exp)
{
Status = exp.Message;
this.Exception = exp;
throw new Exception(exp.Message);
}
}
/// <summary>
/// Method increases the current user version of the currently
/// opened database (or throw an exception if database was unavailable).
/// </summary>
/// <returns></returns>
public long UserVersionIncrease()
{
var version = UserVersion();
try
{
using (SQLiteCommand cmd = new SQLiteCommand(_Connection))
{
cmd.CommandText = string.Format("pragma user_version = {0};", version + 1);
cmd.ExecuteNonQuery();
}
return UserVersion();
}
catch (Exception exp)
{
Status = exp.Message;
this.Exception = exp;
throw new Exception(exp.Message);
}
}
#endregion Pragma UserVersion
#region Pragma JournalMode
/// <summary>
/// Gets the current journal mode of the currently
/// opened database (or throws an exception if database was unavailable).
/// </summary>
/// <returns></returns>
public string JournalMode()
{
try
{
using (SQLiteCommand cmd = new SQLiteCommand(_Connection))
{
cmd.CommandText = "pragma journal_mode;";
var result = cmd.ExecuteScalar();
return result as string; // default is "delete"
}
}
catch (Exception exp)
{
Status = exp.Message;
this.Exception = exp;
throw new Exception(exp.Message);
}
}
/// <summary>
/// Method sets the journal mode of the currently
/// opened database (or throws an exception if database was unavailable).
/// </summary>
/// <returns></returns>
public void JournalMode(JournalMode journalMode)
{
try
{
using (SQLiteCommand cmd = new SQLiteCommand(_Connection))
{
// String is case-insensitive
cmd.CommandText = string.Format("pragma journal_mode = {0};", journalMode.ToString());
cmd.ExecuteNonQuery();
}
return;
}
catch (Exception exp)
{
Status = exp.Message;
this.Exception = exp;
throw new Exception(exp.Message);
}
}
#endregion Pragma JournalMode
private void ConstructConnection(bool overWriteFile = false)
{
var dbFileNamePath = DBFileNamePath;
SQLiteConnectionStringBuilder connectString = new SQLiteConnectionStringBuilder();
connectString.DataSource = dbFileNamePath;
connectString.ForeignKeys = EnforceForeignKeys;
connectString.JournalMode = GetJournalMode();
_Connection = new SQLiteConnection(connectString.ToString());
if (System.IO.File.Exists(dbFileNamePath) == false)
{
// Overwrites a file if it is already there
SQLiteConnection.CreateFile(dbFileNamePath);
Status = "Created New Database.";
}
else
{
if (overWriteFile == false)
{
Status = "Using exsiting Database.";
}
else
{
// Overwrites a file if it is already there
SQLiteConnection.CreateFile(dbFileNamePath);
}
}
}
/// <summary>
/// Determines the journal model of the SQLite database - this is
/// required to at conneciton/database open time.
/// </summary>
/// <returns></returns>
private SQLiteJournalModeEnum GetJournalMode()
{
return (this.MutliThreadAccess ? SQLiteJournalModeEnum.Wal : SQLiteJournalModeEnum.Default);
}
#endregion methods
}
}