1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Datastore/Connection.cs

81 lines
2.5 KiB
C#
Raw Normal View History

2011-05-24 02:29:14 +03:00
using System;
2011-11-23 09:15:02 +03:00
using System.Configuration;
using System.Data.Common;
using System.Data.SqlServerCe;
using NzbDrone.Common;
using NzbDrone.Core.Instrumentation;
2011-06-15 05:31:41 +03:00
using PetaPoco;
2011-05-24 02:29:14 +03:00
namespace NzbDrone.Core.Datastore
{
public class Connection
2011-05-24 02:29:14 +03:00
{
private readonly EnvironmentProvider _environmentProvider;
2011-05-24 02:29:14 +03:00
2011-12-02 10:07:18 +03:00
static Connection()
2011-11-23 09:15:02 +03:00
{
2011-12-02 10:07:18 +03:00
Database.Mapper = new CustomeMapper();
2011-11-23 09:15:02 +03:00
2011-12-02 10:07:18 +03:00
var dataSet = ConfigurationManager.GetSection("system.data") as System.Data.DataSet;
dataSet.Tables[0].Rows.Add("Microsoft SQL Server Compact Data Provider 4.0"
, "System.Data.SqlServerCe.4.0"
, ".NET Framework Data Provider for Microsoft SQL Server Compact"
, "System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=4.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91");
2011-11-23 09:15:02 +03:00
}
public Connection(EnvironmentProvider environmentProvider)
2011-05-24 02:29:14 +03:00
{
_environmentProvider = environmentProvider;
2011-05-24 02:29:14 +03:00
}
2011-12-02 10:07:18 +03:00
public String MainConnectionString
2011-05-24 02:29:14 +03:00
{
get
{
return GetConnectionString(_environmentProvider.GetNzbDroneDbFile());
2011-05-24 02:29:14 +03:00
}
}
public String LogConnectionString
2011-05-24 02:29:14 +03:00
{
get
{
return GetConnectionString(_environmentProvider.GetLogDbFileDbFile());
2011-05-24 02:29:14 +03:00
}
}
public static string GetConnectionString(string path)
{
return String.Format("Data Source=\"{0}\"; Max Database Size = 512;", path);
}
2011-11-13 10:27:16 +03:00
public IDatabase GetMainPetaPocoDb(Boolean profiled = true)
{
return GetPetaPocoDb(MainConnectionString, profiled);
}
public IDatabase GetLogPetaPocoDb(Boolean profiled = true)
{
return GetPetaPocoDb(LogConnectionString, profiled);
}
public static IDatabase GetPetaPocoDb(string connectionString, Boolean profiled = true)
2011-06-15 05:31:41 +03:00
{
MigrationsHelper.Run(connectionString, true);
2011-06-23 09:56:17 +03:00
var factory = new DbProviderFactory
{
IsProfiled = profiled
};
var db = new Database(connectionString, factory, Database.DBType.SqlServerCE)
{
KeepConnectionAlive = true,
ForceDateTimesToUtc = false,
};
2011-06-15 05:31:41 +03:00
return db;
}
2011-05-24 02:29:14 +03:00
}
}