We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 855221d commit 7a9a20dCopy full SHA for 7a9a20d
2 files changed
examples/Stocks/Stocks.cs
@@ -38,6 +38,9 @@ public class Database : SQLiteConnection
38
{
39
public Database (string path) : base(path)
40
41
+ //Crypt database
42
+ Execute("PRAGMA key = 'snKJRLKOT4HD-QGmxBXaHTHWiZypllQvYHhbknmR';");
43
+
44
CreateTable<Stock> ();
45
CreateTable<Valuation> ();
46
}
examples/Stocks/Stocks.csproj
@@ -79,7 +79,7 @@
79
</ProjectReference>
80
</ItemGroup>
81
<ItemGroup>
82
- <PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3">
+ <PackageReference Include="SQLitePCLRaw.bundle_e_sqlcipher">
83
<Version>2.0.3</Version>
84
</PackageReference>
85
0 commit comments