aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs
blob: 596cf8407a405ba147163712cca82d73f858d9dd (plain)
1
2
3
4
5
6
7
8
9
10
using System.Data;
using System.Threading.Tasks;

namespace MediaBrowser.Server.Implementations.Persistence
{
    public interface IDbConnector
    {
        Task<IDbConnection> Connect(string dbPath, bool isReadOnly, bool enablePooling = false, int? cacheSize = null);
    }
}