Skip to content

Commit

Permalink
Removed PRAGMA because it doesn't work in this version
Browse files Browse the repository at this point in the history
  • Loading branch information
droyad committed Jul 29, 2024
1 parent f9aee5d commit 025c940
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/dbup-sqlite/Helpers/InMemorySQLiteDatabase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ public InMemorySQLiteDatabase()
{
DataSource = ":memory:",
DefaultTimeout = 5,
Mode = SqliteOpenMode.Memory,
ConnectionString = "PRAGMA encoding='UTF-16'; PRAGMA journal_mode='MEMORY';"
Mode = SqliteOpenMode.Memory
};
ConnectionString = connectionStringBuilder.ToString();

Expand Down

0 comments on commit 025c940

Please sign in to comment.