0c60494e0ffe16fb18f48610239c0b9d019138e8
[mono.git] / mcs / class / Mono.Data.Sqlite / Mono.Data.Sqlite_2.0 / LINQ / SQLiteConnection_Linq.cs
1 /********************************************************\r
2  * ADO.NET 2.0 Data Provider for SQLite Version 3.X\r
3  * Written by Robert Simpson (robert@blackcastlesoft.com)\r
4  * \r
5  * Released to the public domain, use at your own risk!\r
6  ********************************************************/\r
7 \r
8 namespace System.Data.SQLite\r
9 {\r
10   using System;\r
11   using System.Data;\r
12   using System.Data.Common;\r
13   using System.Collections.Generic;\r
14   using System.Globalization;\r
15   using System.ComponentModel;\r
16 \r
17   public sealed partial class SQLiteConnection\r
18   {\r
19     /// <summary>\r
20     /// Returns a SQLiteProviderFactory object.\r
21     /// </summary>\r
22     protected override DbProviderFactory DbProviderFactory\r
23     {\r
24       get { return SQLiteFactory.Instance; }\r
25     }\r
26   }\r
27 }\r
28 \r