a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
29 lines
767 B
C#
29 lines
767 B
C#
/********************************************************
|
|
* 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 Mono.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
|
|
{
|
|
/// <summary>
|
|
/// Returns a SQLiteProviderFactory object.
|
|
/// </summary>
|
|
protected override DbProviderFactory DbProviderFactory
|
|
{
|
|
get { return SqliteFactory.Instance; }
|
|
}
|
|
}
|
|
}
|
|
|