mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
79 lines
2.1 KiB
C#
79 lines
2.1 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Data.Common;
|
|
using System.Data.SqlServerCe;
|
|
using System.IO;
|
|
using MvcMiniProfiler.Data;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Providers;
|
|
using PetaPoco;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public class Connection
|
|
{
|
|
private readonly PathProvider _pathProvider;
|
|
|
|
public Connection(PathProvider pathProvider)
|
|
{
|
|
_pathProvider = pathProvider;
|
|
}
|
|
|
|
static Connection()
|
|
{
|
|
Database.Mapper = new CustomeMapper();
|
|
}
|
|
|
|
public String MainConnectionString
|
|
{
|
|
get
|
|
{
|
|
return GetConnectionString(_pathProvider.NzbDronoeDbFile);
|
|
}
|
|
}
|
|
|
|
public String LogConnectionString
|
|
{
|
|
get
|
|
{
|
|
return GetConnectionString(_pathProvider.LogDbFile);
|
|
}
|
|
}
|
|
|
|
public static string GetConnectionString(string path)
|
|
{
|
|
//return String.Format("Data Source={0};Version=3;Cache Size=30000;Pooling=true;Default Timeout=2", path);
|
|
return String.Format("Data Source={0}", path);
|
|
}
|
|
|
|
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)
|
|
{
|
|
MigrationsHelper.Run(connectionString, true);
|
|
|
|
var factory = new PetaDbProviderFactory
|
|
{
|
|
IsProfiled = profiled
|
|
};
|
|
|
|
var db = new Database(connectionString, factory, Database.DBType.SqlServerCE)
|
|
{
|
|
KeepConnectionAlive = true,
|
|
ForceDateTimesToUtc = false,
|
|
};
|
|
|
|
return db;
|
|
}
|
|
|
|
}
|
|
}
|