jellyfin/Emby.Server.Core/Data/IDbConnector.cs
2016-11-11 01:43:42 -05:00

10 lines
255 B
C#

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);
}
}