Radarr/NzbDrone.SqlCe/SqlCeProxy.cs

28 lines
647 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
{
2013-02-16 23:29:21 +00:00
public SqlCeConnection EnsureDatabase(string connectionString)
2013-02-16 21:10:20 +00:00
{
2013-02-16 23:29:21 +00:00
var connection = new SqlCeConnection(connectionString);
2013-02-16 21:10:20 +00:00
if (!File.Exists(connection.Database))
{
2013-02-16 23:29:21 +00:00
var engine = new SqlCeEngine(connectionString);
2013-02-16 21:10:20 +00:00
engine.CreateDatabase();
}
2013-02-16 23:29:21 +00:00
return connection;
2013-02-16 21:10:20 +00:00
}
public DbProviderFactory GetSqlCeProviderFactory()
{
return new SqlCeProviderFactory();
}
}
}