Sonarr/NzbDrone.Core/Datastore/Connection.cs

66 lines
1.8 KiB
C#
Raw Normal View History

2011-05-23 23:29:14 +00:00
using System;
using System.Data;
using System.Data.Common;
2011-06-23 06:56:17 +00:00
using System.Data.SqlServerCe;
2011-05-23 23:29:14 +00:00
using System.IO;
2011-06-14 01:35:44 +00:00
using MvcMiniProfiler.Data;
using NzbDrone.Common;
using NzbDrone.Core.Providers;
2011-06-15 02:31:41 +00:00
using PetaPoco;
2011-05-23 23:29:14 +00:00
namespace NzbDrone.Core.Datastore
{
public static class Connection
{
private static EnviromentProvider _enviromentProvider = new EnviromentProvider();
2011-05-23 23:29:14 +00:00
static Connection()
{
Database.Mapper = new CustomeMapper();
2011-05-23 23:29:14 +00:00
}
2011-06-04 18:19:22 +00:00
public static string GetConnectionString(string path)
2011-05-23 23:29:14 +00:00
{
2011-06-23 06:56:17 +00:00
//return String.Format("Data Source={0};Version=3;Cache Size=30000;Pooling=true;Default Timeout=2", path);
return String.Format("Data Source={0}", path);
2011-05-23 23:29:14 +00:00
}
2011-06-04 18:19:22 +00:00
public static String MainConnectionString
2011-05-23 23:29:14 +00:00
{
get
{
return GetConnectionString(Path.Combine(_enviromentProvider.AppDataPath, "nzbdrone.sdf"));
2011-05-23 23:29:14 +00:00
}
}
2011-06-04 18:19:22 +00:00
public static String LogConnectionString
2011-05-23 23:29:14 +00:00
{
get
{
return GetConnectionString(Path.Combine(_enviromentProvider.AppDataPath, "log.sdf"));
2011-05-23 23:29:14 +00:00
}
}
public static IDatabase GetPetaPocoDb(string connectionString, Boolean profiled = true)
2011-06-15 02:31:41 +00:00
{
MigrationsHelper.Run(connectionString, true);
2011-06-23 06:56:17 +00:00
var factory = new PetaDbProviderFactory
{
IsProfiled = profiled
};
var db = new Database(connectionString, factory, Database.DBType.SqlServerCE)
{
KeepConnectionAlive = true,
ForceDateTimesToUtc = false,
};
2011-06-15 02:31:41 +00:00
return db;
}
2011-05-23 23:29:14 +00:00
}
}