aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-06-11 11:55:05 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-06-11 11:55:05 -0400
commit4c7f292ba884c16b9e95eb319f3664469189d22c (patch)
tree8d14a7f471d75f4bb837d0548958558204371475 /MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs
parent682edf5abde127b59b3303dabc6445d975ef60d3 (diff)
use individual connections
Diffstat (limited to 'MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs b/MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs
index 2092f830a..596cf8407 100644
--- a/MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs
+++ b/MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs
@@ -5,6 +5,6 @@ namespace MediaBrowser.Server.Implementations.Persistence
{
public interface IDbConnector
{
- Task<IDbConnection> Connect(string dbPath, int? cacheSize = null);
+ Task<IDbConnection> Connect(string dbPath, bool isReadOnly, bool enablePooling = false, int? cacheSize = null);
}
}