System.Data.SQLite

Check-in [4228ab0070]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:no message
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: 4228ab0070e30334f23c24e05df6d56d734d1913
User & Date: rmsimpson 2007-12-07 16:09:02.000
Context
2008-05-28
08:18
1.0.49.0 check-in: f3f45cefd1 user: rmsimpson tags: sourceforge
2007-12-07
16:09
no message check-in: 4228ab0070 user: rmsimpson tags: sourceforge
2007-12-04
16:11
SQLite 3.5.3 check-in: ba03747b49 user: rmsimpson tags: sourceforge
Changes
Unified Diff Ignore Whitespace Patch
Added System.Data.SQLite/LINQ/SQLiteConnection_Linq.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
/********************************************************
 * 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.Data;
  using System.Data.Common;
  using System.Collections.Generic;
  using System.Globalization;
  using System.ComponentModel;

  public sealed partial class SQLiteConnection
  {
#if LINQ
    protected override DbProviderFactory DbProviderFactory
    {
      get { return SQLiteFactory.Instance; }
    }
#endif
    /// <summary>
    /// Returns a SQLiteProviderFactory object.  This will be mandatory in .NET 3.5, so we'll eat the warning for now
    /// and allow .NET 2.0 objects to have this capability
    /// </summary>
    public new SQLiteFactory DbProviderFactory
    {
      get { return SQLiteFactory.Instance; }
    }
  }
}

Added System.Data.SQLite/LINQ/SQLiteFactory_Linq.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
/********************************************************
 * 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.Data.Common;

  /// <summary>
  /// SQLite implementation of DbProviderFactory.
  /// </summary>
  public sealed partial class SQLiteFactory : IServiceProvider
  {
    /// <summary>
    /// Will provide a DbProviderServices object in .NET 3.5
    /// </summary>
    /// <param name="serviceType">The class or interface type to query for</param>
    /// <returns></returns>
    public object GetService(Type serviceType)
    {
      return null;
    }
  }
}