diff options
| author | JPVenson <6794763+JPVenson@users.noreply.github.com> | 2024-10-08 19:53:26 +0000 |
|---|---|---|
| committer | JPVenson <6794763+JPVenson@users.noreply.github.com> | 2024-10-08 19:53:26 +0000 |
| commit | 15bf43e3adc69fc0ec5413e81a20b1f0d5dccd5c (patch) | |
| tree | eef480ca4ae6a452677a3417c8bdaf51cc4d4863 /Emby.Server.Implementations/Data/TempStoreMode.cs | |
| parent | 6acd146d17691d1fd58e8a110425cf1d7e2cdc44 (diff) | |
Removed BaseSqliteRepository
Diffstat (limited to 'Emby.Server.Implementations/Data/TempStoreMode.cs')
| -rw-r--r-- | Emby.Server.Implementations/Data/TempStoreMode.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Emby.Server.Implementations/Data/TempStoreMode.cs b/Emby.Server.Implementations/Data/TempStoreMode.cs deleted file mode 100644 index d2427ce47..000000000 --- a/Emby.Server.Implementations/Data/TempStoreMode.cs +++ /dev/null @@ -1,23 +0,0 @@ -namespace Emby.Server.Implementations.Data; - -/// <summary> -/// Storage mode used by temporary database files. -/// </summary> -public enum TempStoreMode -{ - /// <summary> - /// The compile-time C preprocessor macro SQLITE_TEMP_STORE - /// is used to determine where temporary tables and indices are stored. - /// </summary> - Default = 0, - - /// <summary> - /// Temporary tables and indices are stored in a file. - /// </summary> - File = 1, - - /// <summary> - /// Temporary tables and indices are kept in as if they were pure in-memory databases memory. - /// </summary> - Memory = 2 -} |
