Files
jellyfin-jellyfin-1/MediaBrowser.Server.Startup.Common/Persistence/IDbConnector.cs

11 lines
280 B
C#
Raw Normal View History

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