Sonarr/NzbDrone.SqlCe/SqlCeProxy.cs

26 lines
574 B
C#
Raw Normal View History

2013-02-16 21:10:20 +00:00
using System.Data.Common;
using System.Data.SqlServerCe;
using System.IO;
namespace NzbDrone.SqlCe
{
public class SqlCeProxy
{
public void EnsureDatabase(string constr)
2013-02-16 21:10:20 +00:00
{
var connection = new SqlCeConnection(constr);
2013-02-16 21:10:20 +00:00
if (!File.Exists(connection.Database))
{
var engine = new SqlCeEngine(constr);
2013-02-16 21:10:20 +00:00
engine.CreateDatabase();
}
}
public DbProviderFactory GetSqlCeProviderFactory()
{
return new SqlCeProviderFactory();
}
}
}