jellyfin/MediaBrowser.Server.Startup.Common/Persistence/IDbConnector.cs
2016-11-10 23:25:21 -05:00

10 lines
280 B
C#

using System.Data;
using System.Threading.Tasks;
namespace MediaBrowser.Server.Startup.Common.Persistence
{
public interface IDbConnector
{
Task<IDbConnection> Connect(string dbPath, bool isReadOnly, bool enablePooling = false, int? cacheSize = null);
}
}