1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 18:42:42 +01:00
Radarr/NzbDrone.Core/Datastore/Connection.cs

59 lines
1.5 KiB
C#
Raw Normal View History

2011-05-24 01:29:14 +02:00
using System;
using System.Data;
2011-06-15 04:31:41 +02:00
using System.Data.SQLite;
2011-05-24 01:29:14 +02:00
using System.IO;
2011-06-14 03:35:44 +02:00
using MvcMiniProfiler.Data;
2011-06-15 04:31:41 +02:00
using PetaPoco;
2011-05-24 01:29:14 +02:00
namespace NzbDrone.Core.Datastore
{
public static class Connection
{
private static readonly DirectoryInfo AppDataPath = new DirectoryInfo(Path.Combine(CentralDispatch.AppPath, "App_Data"));
static Connection()
{
if (!AppDataPath.Exists) AppDataPath.Create();
}
2011-06-04 20:19:22 +02:00
public static string GetConnectionString(string path)
2011-05-24 01:29:14 +02:00
{
2011-06-05 22:01:28 +02:00
return String.Format("Data Source={0};Version=3;Cache Size=30000;", path);
2011-05-24 01:29:14 +02:00
}
2011-06-04 20:19:22 +02:00
public static String MainConnectionString
2011-05-24 01:29:14 +02:00
{
get
{
2011-06-04 20:19:22 +02:00
return GetConnectionString(Path.Combine(AppDataPath.FullName, "nzbdrone.db"));
2011-05-24 01:29:14 +02:00
}
}
2011-06-04 20:19:22 +02:00
public static String LogConnectionString
2011-05-24 01:29:14 +02:00
{
get
{
2011-06-04 20:19:22 +02:00
return GetConnectionString(Path.Combine(AppDataPath.FullName, "log.db"));
2011-05-24 01:29:14 +02:00
}
}
2011-06-18 03:46:22 +02:00
2011-06-15 04:31:41 +02:00
public static IDatabase GetPetaPocoDb(string connectionString)
{
MigrationsHelper.Run(connectionString, true);
2011-06-15 04:31:41 +02:00
var profileConnection = ProfiledDbConnection.Get(new SQLiteConnection(connectionString));
Database.Mapper = new CustomeMapper();
var db = new Database(profileConnection);
if (profileConnection.State != ConnectionState.Open)
profileConnection.Open();
2011-06-15 04:31:41 +02:00
return db;
}
2011-05-24 01:29:14 +02:00
}
}