diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-07-02 11:56:13 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-02 11:56:13 -0700 |
| commit | e722801f801bfcb7395d3cd394bdc99258edbf3b (patch) | |
| tree | 4cdfa6f1c6917dee0abd3743f53dccd39f17d14e /Emby.Server.Implementations/Data/SqliteExtensions.cs | |
| parent | 6cf9204219616d76798685c3a44661619f68a82e (diff) | |
| parent | 29ae7b9aeb46ac297ba5c3253d73cd4cd325c042 (diff) | |
Merge pull request #956 from Bond-009/db
Simplify db code
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteExtensions.cs')
| -rw-r--r-- | Emby.Server.Implementations/Data/SqliteExtensions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteExtensions.cs b/Emby.Server.Implementations/Data/SqliteExtensions.cs index a486cb1a0..c0f27b25a 100644 --- a/Emby.Server.Implementations/Data/SqliteExtensions.cs +++ b/Emby.Server.Implementations/Data/SqliteExtensions.cs @@ -141,7 +141,7 @@ namespace Emby.Server.Implementations.Data } } - public static void Attach(ManagedConnection db, string path, string alias) + public static void Attach(SQLiteDatabaseConnection db, string path, string alias) { var commandText = string.Format("attach @path as {0};", alias); |
