2011-05-24 02:29:14 +03:00
|
|
|
using System;
|
2011-11-23 09:15:02 +03:00
|
|
|
using System.Configuration;
|
2011-11-23 08:58:26 +03:00
|
|
|
using System.Data.Common;
|
|
|
|
using System.Data.SqlServerCe;
|
2011-10-29 07:54:33 +03:00
|
|
|
using NzbDrone.Common;
|
2011-11-23 08:58:26 +03:00
|
|
|
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
|
|
|
|
{
|
2011-11-03 08:04:14 +03:00
|
|
|
public class Connection
|
2011-05-24 02:29:14 +03:00
|
|
|
{
|
2012-03-07 05:59:43 +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
|
|
|
}
|
|
|
|
|
2012-03-07 05:59:43 +03:00
|
|
|
public Connection(EnvironmentProvider environmentProvider)
|
2011-05-24 02:29:14 +03:00
|
|
|
{
|
2012-03-07 05:59:43 +03:00
|
|
|
_environmentProvider = environmentProvider;
|
2011-05-24 02:29:14 +03:00
|
|
|
}
|
2011-12-02 10:07:18 +03:00
|
|
|
|
2011-11-03 08:04:14 +03:00
|
|
|
public String MainConnectionString
|
2011-05-24 02:29:14 +03:00
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2012-08-14 21:51:25 +03:00
|
|
|
return GetConnectionString(_environmentProvider.GetNzbDroneDbFile());
|
2011-05-24 02:29:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-03 08:04:14 +03:00
|
|
|
public String LogConnectionString
|
2011-05-24 02:29:14 +03:00
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2012-03-07 05:59:43 +03:00
|
|
|
return GetConnectionString(_environmentProvider.GetLogDbFileDbFile());
|
2011-05-24 02:29:14 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-03 08:04:14 +03:00
|
|
|
public static string GetConnectionString(string path)
|
|
|
|
{
|
2012-08-14 21:51:25 +03:00
|
|
|
return String.Format("Data Source=\"{0}\"; Max Database Size = 512;", path);
|
2011-11-03 08:04:14 +03:00
|
|
|
}
|
2011-11-13 10:27:16 +03:00
|
|
|
|
2011-11-03 08:04:14 +03:00
|
|
|
public IDatabase GetMainPetaPocoDb(Boolean profiled = true)
|
|
|
|
{
|
|
|
|
return GetPetaPocoDb(MainConnectionString, profiled);
|
|
|
|
}
|
|
|
|
|
|
|
|
public IDatabase GetLogPetaPocoDb(Boolean profiled = true)
|
|
|
|
{
|
|
|
|
return GetPetaPocoDb(LogConnectionString, profiled);
|
|
|
|
}
|
2011-06-18 05:51:53 +03:00
|
|
|
|
|
|
|
public static IDatabase GetPetaPocoDb(string connectionString, Boolean profiled = true)
|
2011-06-15 05:31:41 +03:00
|
|
|
{
|
2011-06-17 09:58:50 +03:00
|
|
|
MigrationsHelper.Run(connectionString, true);
|
2011-06-23 09:56:17 +03:00
|
|
|
|
2011-11-23 08:58:26 +03:00
|
|
|
var factory = new DbProviderFactory
|
2011-08-28 20:43:33 +03:00
|
|
|
{
|
|
|
|
IsProfiled = profiled
|
|
|
|
};
|
2011-06-17 06:36:52 +03:00
|
|
|
|
2011-08-28 20:43:33 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|