1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00

40 lines
1008 B
C#
Raw Normal View History

2013-03-23 17:08:23 -07:00
using System;
using System.Data;
2013-03-24 20:51:32 -07:00
using Marr.Data;
using Mono.Data.Sqlite;
2013-03-23 17:08:23 -07:00
namespace NzbDrone.Core.Datastore
{
public interface IDbFactory
{
2013-03-24 20:51:32 -07:00
IDatabase Create(string dbPath = null);
2013-03-23 17:08:23 -07:00
}
public class DbFactory : IDbFactory
{
2013-03-23 21:56:59 -07:00
private const string MemoryConnectionString = "Data Source=:memory:;Version=3;New=True;";
2013-03-23 17:08:23 -07:00
2013-03-24 20:51:32 -07:00
public IDatabase Create(string dbPath = null)
2013-03-23 17:08:23 -07:00
{
2013-03-23 21:56:59 -07:00
var connectionString = MemoryConnectionString;
if (!string.IsNullOrWhiteSpace(dbPath))
2013-03-23 17:08:23 -07:00
{
2013-03-23 21:56:59 -07:00
connectionString = GetConnectionString(dbPath);
2013-03-23 17:08:23 -07:00
}
MigrationHelper.MigrateToLatest(connectionString, MigrationType.Main);
2013-03-24 20:51:32 -07:00
var dataMapper = new DataMapper(SqliteFactory.Instance, connectionString);
return new Database(dataMapper);
}
2013-03-23 17:08:23 -07:00
private string GetConnectionString(string dbPath)
{
return String.Format("Data Source={0};Version=3;", dbPath);
}
}
}