aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Core/Data/IDbConnector.cs
blob: ca6c13daee366c4d71beaf8e396c86e4961549b7 (plain)
1
2
3
4
5
6
7
8
9
10
using System.Data;
using System.Threading.Tasks;

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