You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
636 B
22 lines
636 B
using System.Data;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Model.Logging;
|
|
using MediaBrowser.Server.Implementations.Persistence;
|
|
|
|
namespace MediaBrowser.ServerApplication.Native
|
|
{
|
|
public class DbConnector : IDbConnector
|
|
{
|
|
private readonly ILogger _logger;
|
|
|
|
public DbConnector(ILogger logger)
|
|
{
|
|
_logger = logger;
|
|
}
|
|
|
|
public Task<IDbConnection> Connect(string dbPath, bool isReadOnly, bool enablePooling = false, int? cacheSize = null)
|
|
{
|
|
return SqliteExtensions.ConnectToDb(dbPath, isReadOnly, enablePooling, cacheSize, _logger);
|
|
}
|
|
}
|
|
} |