You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
3.9 KiB
C#
108 lines
3.9 KiB
C#
|
8 years ago
|
using System;
|
||
|
|
using System.Data.Common;
|
||
|
|
using System.Data.OleDb;
|
||
|
|
|
||
|
|
namespace System.Data.Jet
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Jet provider factory
|
||
|
|
/// </summary>
|
||
|
|
public class JetProviderFactory : DbProviderFactory
|
||
|
|
{
|
||
|
|
public static readonly JetProviderFactory Instance = new JetProviderFactory();
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Specifies whether the specific <see cref="T:System.Data.Common.DbProviderFactory" /> supports the <see cref="T:System.Data.Common.DbDataSourceEnumerator" /> class.
|
||
|
|
/// </summary>
|
||
|
|
public override bool CanCreateDataSourceEnumerator
|
||
|
|
{
|
||
|
|
get
|
||
|
|
{
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbCommand" /> class.
|
||
|
|
/// </summary>
|
||
|
|
/// <returns>
|
||
|
|
/// A new instance of <see cref="T:System.Data.Common.DbCommand" />.
|
||
|
|
/// </returns>
|
||
|
|
public override DbCommand CreateCommand()
|
||
|
|
{
|
||
|
|
return new JetCommand();
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbCommandBuilder" /> class.
|
||
|
|
/// </summary>
|
||
|
|
/// <returns>
|
||
|
|
/// A new instance of <see cref="T:System.Data.Common.DbCommandBuilder" />.
|
||
|
|
/// </returns>
|
||
|
|
public override DbCommandBuilder CreateCommandBuilder()
|
||
|
|
{
|
||
|
|
OleDbCommandBuilder commandBuilder = new OleDbCommandBuilder();
|
||
|
|
commandBuilder.QuotePrefix = "[";
|
||
|
|
commandBuilder.QuoteSuffix = "]";
|
||
|
|
return commandBuilder;
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbConnection" /> class.
|
||
|
|
/// </summary>
|
||
|
|
/// <returns>
|
||
|
|
/// A new instance of <see cref="T:System.Data.Common.DbConnection" />.
|
||
|
|
/// </returns>
|
||
|
|
public override DbConnection CreateConnection()
|
||
|
|
{
|
||
|
|
return new JetConnection();
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbConnectionStringBuilder" /> class.
|
||
|
|
/// </summary>
|
||
|
|
/// <returns>
|
||
|
|
/// A new instance of <see cref="T:System.Data.Common.DbConnectionStringBuilder" />.
|
||
|
|
/// </returns>
|
||
|
|
public override DbConnectionStringBuilder CreateConnectionStringBuilder()
|
||
|
|
{
|
||
|
|
OleDbConnectionStringBuilder oleDbConnectionStringBuilder = new OleDbConnectionStringBuilder();
|
||
|
|
|
||
|
|
return oleDbConnectionStringBuilder;
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbDataAdapter" /> class.
|
||
|
|
/// </summary>
|
||
|
|
/// <returns>
|
||
|
|
/// A new instance of <see cref="T:System.Data.Common.DbDataAdapter" />.
|
||
|
|
/// </returns>
|
||
|
|
public override DbDataAdapter CreateDataAdapter()
|
||
|
|
{
|
||
|
|
return new OleDbDataAdapter();
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbDataSourceEnumerator" /> class.
|
||
|
|
/// </summary>
|
||
|
|
/// <returns>
|
||
|
|
/// A new instance of <see cref="T:System.Data.Common.DbDataSourceEnumerator" />.
|
||
|
|
/// </returns>
|
||
|
|
public override DbDataSourceEnumerator CreateDataSourceEnumerator()
|
||
|
|
{
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbParameter" /> class.
|
||
|
|
/// </summary>
|
||
|
|
/// <returns>
|
||
|
|
/// A new instance of <see cref="T:System.Data.Common.DbParameter" />.
|
||
|
|
/// </returns>
|
||
|
|
public override DbParameter CreateParameter()
|
||
|
|
{
|
||
|
|
return new OleDbParameter();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|