Asp.net core中Sqlite连接字符串写法

275 阅读1分钟

引用自:stackoverflow.com/questions/1…

Basic

Data Source=c:\mydb.db;Version=3;

Version 2 is not supported by this class library.

In-Memory Database An SQLite database is normally stored on disk but the database can also be stored in memory.

Data Source=:memory:;Version=3;New=True;

Using UTF16

Data Source=c:\mydb.db;Version=3;UseUTF16Encoding=True;

With password

Data Source=c:\mydb.db;Version=3;Password=myPassword;