2014年2月26日 星期三

SQLite.NET connection strings

引用來源:SQLite.NET connection strings
--
Basic
"Data Source=c:\mydb.db;Version=3;"
Version 2 is not supported by this class library. SQLite

In-Memory Database
An SQLite database is normally stored on disk but the database can also be stored in memory. Read more about SQLite in-memory databases here.
"Data Source=:memory:;Version=3;New=True;"

SQLite
Using UTF16
"Data Source=c:\mydb.db;Version=3;UseUTF16Encoding=True;"

SQLite
With password
"Data Source=c:\mydb.db;Version=3;Password=myPassword; "

沒有留言:

張貼留言