forked from jstedfast/MimeKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQLiteFactory.cs
79 lines (71 loc) · 2.18 KB
/
SQLiteFactory.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
/********************************************************
* ADO.NET 2.0 Data Provider for SQLite Version 3.X
* Written by Robert Simpson ([email protected])
*
* Released to the public domain, use at your own risk!
********************************************************/
namespace Mono.Data.Sqlite
{
using System;
using System.Data.Common;
#if !PLATFORM_COMPACTFRAMEWORK
/// <summary>
/// SQLite implementation of DbProviderFactory.
/// </summary>
public sealed partial class SqliteFactory : DbProviderFactory
{
/// <summary>
/// Static instance member which returns an instanced SqliteFactory class.
/// </summary>
public static readonly SqliteFactory Instance = new SqliteFactory();
/// <summary>
/// Returns a new SqliteCommand object.
/// </summary>
/// <returns>A SqliteCommand object.</returns>
public override DbCommand CreateCommand()
{
return new SqliteCommand();
}
/// <summary>
/// Returns a new SqliteCommandBuilder object.
/// </summary>
/// <returns>A SqliteCommandBuilder object.</returns>
public override DbCommandBuilder CreateCommandBuilder()
{
return new SqliteCommandBuilder();
}
/// <summary>
/// Creates a new SqliteConnection.
/// </summary>
/// <returns>A SqliteConnection object.</returns>
public override DbConnection CreateConnection()
{
return new SqliteConnection();
}
/// <summary>
/// Creates a new SqliteConnectionStringBuilder.
/// </summary>
/// <returns>A SqliteConnectionStringBuilder object.</returns>
public override DbConnectionStringBuilder CreateConnectionStringBuilder()
{
return new SqliteConnectionStringBuilder();
}
/// <summary>
/// Creates a new SqliteDataAdapter.
/// </summary>
/// <returns>A SqliteDataAdapter object.</returns>
public override DbDataAdapter CreateDataAdapter()
{
return new SqliteDataAdapter();
}
/// <summary>
/// Creates a new SqliteParameter.
/// </summary>
/// <returns>A SqliteParameter object.</returns>
public override DbParameter CreateParameter()
{
return new SqliteParameter();
}
}
#endif
}