jellyfin/MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs

11 lines
281 B
C#
Raw Normal View History

2016-05-01 23:48:37 +02:00
using System.Data;
using System.Threading.Tasks;
namespace MediaBrowser.Server.Implementations.Persistence
{
public interface IDbConnector
{
2016-06-11 17:55:05 +02:00
Task<IDbConnection> Connect(string dbPath, bool isReadOnly, bool enablePooling = false, int? cacheSize = null);
2016-05-01 23:48:37 +02:00
}
}