You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
969 B
33 lines
969 B
using System;
|
|
using System.Data.Common;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public static class SqlCeProxy
|
|
{
|
|
private static readonly object instance;
|
|
private static readonly Type proxyType;
|
|
|
|
static SqlCeProxy()
|
|
{
|
|
proxyType = Assembly.Load("NzbDrone.SqlCe").GetExportedTypes()[0];
|
|
instance = Activator.CreateInstance(proxyType);
|
|
}
|
|
|
|
public static DbConnection EnsureDatabase(string connectionString)
|
|
{
|
|
var factoryMethod = proxyType.GetMethod("EnsureDatabase");
|
|
return (DbConnection)factoryMethod.Invoke(instance, new object[] { connectionString });
|
|
}
|
|
|
|
public static DbProviderFactory GetSqlCeProviderFactory()
|
|
{
|
|
var factoryMethod = proxyType.GetMethod("GetSqlCeProviderFactory");
|
|
return (DbProviderFactory)factoryMethod.Invoke(instance, null);
|
|
}
|
|
}
|
|
|
|
}
|