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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
| /********************************************************
* ADO.NET 2.0 Data Provider for SQLite Version 3.X
* Written by Robert Simpson (robert@blackcastlesoft.com)
*
* Released to the public domain, use at your own risk!
********************************************************/
namespace System.Data.SQLite
{
using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
/// <summary>
/// SQLite has very limited types, and is inherently text-based. The first 5 types below represent the sum of all types SQLite
/// understands. The DateTime extension to the spec is for internal use only.
/// </summary>
public enum TypeAffinity
{
/// <summary>
/// All integers in SQLite default to Int64
/// </summary>
Int64 = 1,
/// <summary>
/// All floating point numbers in SQLite default to double
/// </summary>
Double = 2,
/// <summary>
/// The default data type of SQLite is text
/// </summary>
Text = 3,
/// <summary>
/// Typically blob types are only seen when returned from a function
/// </summary>
Blob = 4,
/// <summary>
/// Null types can be returned from functions
/// </summary>
Null = 5,
/// <summary>
/// Used internally by this provider
/// </summary>
DateTime = 128,
/// <summary>
/// Used internally by this provider
/// </summary>
None=256,
}
/// <summary>
/// This implementation of SQLite for ADO.NET can process date/time fields in databases in only one of two formats. Ticks and ISO8601.
/// Ticks is inherently more accurate, but less compatible with 3rd party tools that query the database, and renders the DateTime field
/// unreadable without post-processing.
/// ISO8601 is more compatible, readable, fully-processable, but less accurate as it doesn't provide time down to fractions of a second.
/// </summary>
public enum DateTimeFormat
{
/// <summary>
/// Using ticks is more accurate but less compatible with other viewers and utilities that access your database.
/// </summary>
Ticks = 0,
/// <summary>
/// The default format for this provider. More compatible with SQLite's intended usage of datetimes, but overall less accurate than Ticks as it doesn't
/// natively support times down to fractions of a second.
/// </summary>
ISO8601 = 1,
}
/// <summary>
/// This base class provides datatype conversion services for the SQLite provider.
/// </summary>
public abstract class SQLiteConvert
{
/// <summary>
/// An array of ISO8601 datetime formats we support conversion from
/// </summary>
private static string[] _datetimeFormats;
/// <summary>
/// An UTF-8 Encoding instance, so we can convert strings to and from UTF8
/// </summary>
private Text.UTF8Encoding _utf8;
/// <summary>
/// The default DateTime format for this instance
/// </summary>
private DateTimeFormat _datetimeFormat;
/// <summary>
/// Static constructor, initializes the supported ISO8601 date time formats
/// </summary>
static SQLiteConvert()
{
_datetimeFormats = new string[] {"yyyy-MM-dd HH:mm:ss",
"yyyyMMddHHmmss",
"yyyyMMddTHHmmssfffffff",
"yyyy-MM-dd",
"yy-MM-dd",
"yyyyMMdd",
"HH:mm:ss",
"THHmmss"
};
}
internal SQLiteConvert(DateTimeFormat fmt)
{
_datetimeFormat = fmt;
_utf8 = new System.Text.UTF8Encoding();
}
#region UTF-8 Conversion Functions
/// <summary>
/// Converts a string to a UTF-8 encoded byte array sized to include a null-terminating character.
/// </summary>
/// <param name="strSrc">The string to convert to UTF-8</param>
/// <returns>A byte array containing the converted string plus an extra 0 terminating byte at the end of the array.</returns>
public byte[] ToUTF8(string strSrc)
{
Byte[] b;
int nlen = _utf8.GetByteCount(strSrc) + 1;
b = new byte[nlen];
nlen = _utf8.GetBytes(strSrc, 0, strSrc.Length, b, 0);
b[nlen] = 0;
return b;
}
/// <summary>
/// Convert a DateTime to a UTF-8 encoded, zero-terminated byte array.
/// </summary>
/// <remarks>
/// This function is a convenience function, which first calls ToString() on the DateTime, and then calls ToUTF8() with the
/// string result.
/// </remarks>
/// <param name="dtSrc">The DateTime to convert.</param>
/// <returns>The UTF-8 encoded string, including a 0 terminating byte at the end of the array.</returns>
public byte[] ToUTF8(DateTime dtSrc)
{
return ToUTF8(ToString(dtSrc));
}
/// <summary>
/// Converts a UTF-8 encoded IntPtr of the specified length into a .NET string
/// </summary>
/// <param name="b">The pointer to the memory where the UTF-8 string is encoded</param>
/// <param name="nlen">The number of bytes to decode</param>
/// <returns>A string containing the translated character(s)</returns>
public virtual string ToString(IntPtr b, int nlen)
{
if (nlen == 0) return "";
byte[] byt;
byt = new byte[nlen];
Marshal.Copy(b, byt, 0, nlen);
return _utf8.GetString(byt, 0, nlen);
}
#endregion
#region DateTime Conversion Functions
/// <summary>
/// Converts a string into a DateTime, using the current DateTimeFormat specified for the connection when it was opened.
/// </summary>
/// <remarks>
/// Acceptable ISO8601 DateTime formats are:
/// yyyy-MM-dd HH:mm:ss
/// yyyyMMddHHmmss
/// yyyyMMddTHHmmssfffffff
/// yyyy-MM-dd
/// yy-MM-dd
/// yyyyMMdd
/// HH:mm:ss
/// THHmmss
/// </remarks>
/// <param name="strSrc">The string containing either a Tick value or an ISO8601-format string</param>
/// <returns>A DateTime value</returns>
public DateTime ToDateTime(string strSrc)
{
switch (_datetimeFormat)
{
case DateTimeFormat.Ticks:
return new DateTime(Convert.ToInt64(strSrc));
default:
return DateTime.ParseExact(strSrc, _datetimeFormats, System.Globalization.DateTimeFormatInfo.InvariantInfo, System.Globalization.DateTimeStyles.None);
}
}
/// <summary>
/// Attempt to convert the specified string to a datetime value.
/// </summary>
/// <param name="strSrc">The string to parse into a datetime</param>
/// <param name="result">If successful, a valid datetime structure</param>
/// <returns>Returns true if the string was a valid ISO8601 datetime, false otherwise.</returns>
public bool TryToDateTime(string strSrc, out DateTime result)
{
switch (_datetimeFormat)
{
case DateTimeFormat.ISO8601:
return DateTime.TryParseExact(strSrc, _datetimeFormats, System.Globalization.DateTimeFormatInfo.InvariantInfo, System.Globalization.DateTimeStyles.None, out result);
case DateTimeFormat.Ticks:
{
long n;
if (long.TryParse(strSrc, out n) == true)
{
result = new DateTime(n);
return true;
}
}
break;
}
result = DateTime.Now;
return false;
}
/// <summary>
/// Converts a DateTime to a string value, using the current DateTimeFormat specified for the connection when it was opened.
/// </summary>
/// <param name="dtSrc">The DateTime value to convert</param>
/// <returns>Either a string consisting of the tick count for DateTimeFormat.Ticks, or a date/time in ISO8601 format.</returns>
public string ToString(DateTime dtSrc)
{
switch (_datetimeFormat)
{
case DateTimeFormat.Ticks:
return dtSrc.Ticks.ToString();
default:
return dtSrc.ToString(_datetimeFormats[0]);
}
}
/// <summary>
/// Internal function to convert a UTF-8 encoded IntPtr of the specified length to a DateTime.
/// </summary>
/// <remarks>
/// This is a convenience function, which first calls ToString() on the IntPtr to convert it to a string, then calls
/// ToDateTime() on the string to return a DateTime.
/// </remarks>
/// <param name="ptr">A pointer to the UTF-8 encoded string</param>
/// <param name="len">The length in bytes of the string</param>
/// <returns>The parsed DateTime value</returns>
internal DateTime ToDateTime(IntPtr ptr, int len)
{
return ToDateTime(ToString(ptr, len));
}
#endregion
/// <summary>
/// Smart method of splitting a string. Skips quoted elements, removes the quotes.
/// </summary>
/// <remarks>
/// This split function works somewhat like the String.Split() function in that it breaks apart a string into
/// pieces and returns the pieces as an array. The primary differences are:
/// <list type="bullet">
/// <item><description>Only one character can be provided as a separator character</description></item>
/// <item><description>Quoted text inside the string is skipped over when searching for the separator, and the quotes are removed.</description></item>
/// </list>
/// Thus, if splitting the following string looking for a comma:<br/>
/// One,Two, "Three, Four", Five<br/>
/// <br/>
/// The resulting array would contain<br/>
/// [0] One<br/>
/// [1] Two<br/>
/// [2] Three, Four<br/>
/// [3] Five<br/>
/// <br/>
/// Note that the leading and trailing spaces were removed from each item during the split.
/// </remarks>
/// <param name="src">Source string to split apart</param>
/// <param name="sep">Separator character</param>
/// <returns>A string array of the split up elements</returns>
public static string[] Split(string src, char sep)
{
char[] toks = new char[2] { '\"', sep };
char[] quot = new char[1] { '\"' };
int n = 0;
List<string> ls = new List<string>();
string s;
while (src.Length > 0)
{
n = src.IndexOfAny(toks, n);
if (n == -1) break;
if (src[n] == toks[0])
{
src = src.Remove(n, 1);
n = src.IndexOfAny(quot, n);
if (n == -1)
{
src = "\"" + src;
break;
}
src = src.Remove(n, 1);
}
else
{
s = src.Substring(0, n).Trim();
src = src.Substring(n + 1).Trim();
if (s.Length > 0) ls.Add(s);
n = 0;
}
}
if (src.Length > 0) ls.Add(src);
string[] ar = new string[ls.Count];
ls.CopyTo(ar, 0);
return ar;
}
#region Type Conversions
/// <summary>
/// For a given intrinsic type, return a DbType
/// </summary>
/// <param name="typ">The native type to convert</param>
/// <returns>The corresponding (closest match) DbType</returns>
internal static DbType TypeToDbType(Type typ)
{
switch (Type.GetTypeCode(typ))
{
case TypeCode.Int16:
return DbType.Int16;
case TypeCode.Int32:
return DbType.Int32;
case TypeCode.Int64:
return DbType.Int64;
case TypeCode.UInt16:
return DbType.UInt16;
case TypeCode.UInt32:
return DbType.UInt32;
case TypeCode.UInt64:
return DbType.UInt64;
case TypeCode.Double:
return DbType.Double;
case TypeCode.Single:
return DbType.Single;
case TypeCode.Decimal:
return DbType.Decimal;
case TypeCode.Boolean:
return DbType.Boolean;
case TypeCode.SByte:
case TypeCode.Char:
return DbType.SByte;
case TypeCode.DateTime:
return DbType.DateTime;
case TypeCode.String:
return DbType.String;
case TypeCode.Object:
if (typ == typeof(byte[])) return DbType.Binary;
if (typ == typeof(Guid)) return DbType.Guid;
return DbType.String;
}
return DbType.String;
}
/// <summary>
/// Convert a DbType to a Type
/// </summary>
/// <param name="typ">The DbType to convert from</param>
/// <returns>The closest-match .NET type</returns>
internal static Type DbTypeToType(DbType typ)
{
switch (typ)
{
case DbType.Binary:
return typeof(byte[]);
case DbType.Boolean:
return typeof(bool);
case DbType.Byte:
return typeof(byte);
case DbType.Currency:
case DbType.Decimal:
return typeof(decimal);
case DbType.DateTime:
return typeof(DateTime);
case DbType.Double:
return typeof(double);
case DbType.Guid:
return typeof(Guid);
case DbType.Int16:
case DbType.UInt16:
return typeof(Int16);
case DbType.Int32:
case DbType.UInt32:
return typeof(Int32);
case DbType.Int64:
case DbType.UInt64:
return typeof(Int64);
case DbType.String:
return typeof(string);
case DbType.SByte:
return typeof(char);
case DbType.Single:
return typeof(float);
}
return typeof(string);
}
/// <summary>
/// For a given type, return the closest-match SQLite TypeAffinity, which only understands a very limited subset of types.
/// </summary>
/// <param name="typ">The type to evaluate</param>
/// <returns>The SQLite type affinity for that type.</returns>
internal static TypeAffinity TypeToAffinity(Type typ)
{
switch (Type.GetTypeCode(typ))
{
case TypeCode.DBNull:
return TypeAffinity.Null;
case TypeCode.String:
return TypeAffinity.Text;
case TypeCode.DateTime:
return TypeAffinity.DateTime;
case TypeCode.Int16:
case TypeCode.Int32:
case TypeCode.Int64:
case TypeCode.UInt16:
case TypeCode.UInt32:
case TypeCode.UInt64:
case TypeCode.Char:
case TypeCode.SByte:
case TypeCode.Byte:
case TypeCode.Boolean:
return TypeAffinity.Int64;
case TypeCode.Double:
case TypeCode.Single:
case TypeCode.Decimal:
return TypeAffinity.Double;
case TypeCode.Object:
if (typ == typeof(byte[])) return TypeAffinity.Blob;
else return TypeAffinity.Text;
}
return TypeAffinity.Text;
}
/// <summary>
/// For a given type name, return a closest-match .NET type
/// </summary>
/// <param name="Name">The name of the type to match</param>
/// <returns>The .NET DBType the text evaluates to.</returns>
internal static DbType TypeNameToDbType(string Name)
{
if (Name == null) return DbType.Object;
Name = Name.ToUpper();
if (Name.IndexOf("LONGTEXT") > -1) return DbType.String;
if (Name.IndexOf("LONGCHAR") > -1) return DbType.String;
if (Name.IndexOf("SMALLINT") > -1) return DbType.Int16;
if (Name.IndexOf("BIGINT") > -1) return DbType.Int64;
if (Name.IndexOf("COUNTER") > -1) return DbType.Int64;
if (Name.IndexOf("AUTOINCREMENT") > -1) return DbType.Int64;
if (Name.IndexOf("IDENTITY") > -1) return DbType.Int64;
if (Name.IndexOf("LONG") > -1) return DbType.Int64;
if (Name.IndexOf("TINYINT") > -1) return DbType.Byte;
if (Name.IndexOf("INTEGER") > -1) return DbType.Int64;
if (Name.IndexOf("INT") > -1) return DbType.Int32;
if (Name.IndexOf("TEXT") > -1) return DbType.String;
if (Name.IndexOf("DOUBLE") > -1) return DbType.Double;
if (Name.IndexOf("FLOAT") > -1) return DbType.Double;
if (Name.IndexOf("REAL") > -1) return DbType.Single;
if (Name.IndexOf("BIT") > -1) return DbType.Boolean;
if (Name.IndexOf("YESNO") > -1) return DbType.Boolean;
if (Name.IndexOf("LOGICAL") > -1) return DbType.Boolean;
if (Name.IndexOf("BOOL") > -1) return DbType.Boolean;
if (Name.IndexOf("NUMERIC") > -1) return DbType.Decimal;
if (Name.IndexOf("DECIMAL") > -1) return DbType.Decimal;
if (Name.IndexOf("MONEY") > -1) return DbType.Decimal;
if (Name.IndexOf("CURRENCY") > -1) return DbType.Decimal;
if (Name.IndexOf("TIME") > -1) return DbType.DateTime;
if (Name.IndexOf("DATE") > -1) return DbType.DateTime;
if (Name.IndexOf("BLOB") > -1) return DbType.Binary;
if (Name.IndexOf("BINARY") > -1) return DbType.Binary;
if (Name.IndexOf("IMAGE") > -1) return DbType.Binary;
if (Name.IndexOf("GENERAL") > -1) return DbType.Binary;
if (Name.IndexOf("OLEOBJECT") > -1) return DbType.Binary;
if (Name.IndexOf("GUID") > -1) return DbType.Guid;
if (Name.IndexOf("UNIQUEIDENTIFIER") > -1) return DbType.Guid;
if (Name.IndexOf("MEMO") > -1) return DbType.String;
if (Name.IndexOf("NOTE") > -1) return DbType.String;
if (Name.IndexOf("CHAR") > -1) return DbType.String;
return DbType.Object;
}
#endregion
}
}
|