We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d39464 commit 20cbd64Copy full SHA for 20cbd64
src/OSPSuite.Infrastructure.Serialization/Journal/IConnectionProvider.cs
@@ -12,10 +12,6 @@ public class ConnectionProvider : IConnectionProvider
12
{
13
public IDbConnection CreateConnection(string databasePath)
14
15
- // Note: The original System.Data.SQLite connection string included "Compress=True",
16
- // but Microsoft.Data.Sqlite does not support the Compress parameter.
17
- // SQLite works fine without compression, and compression adds CPU overhead.
18
- // See COMPRESS_INVESTIGATION.md for details.
19
var connectionString = $"Data Source={databasePath};Foreign Keys=True";
20
var cn = new SqliteConnection(connectionString);
21
cn.Open();
0 commit comments