You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 1, 2018. It is now read-only.
Firstly great implementation and thank you for that :-)
I am planning on migrating an existing code-base currently using System.Data.Sqlite over to Microsoft.Data.Sqlite however I have the following method which allows me to build my connection string:
In general, we would consider them on a per-feature basis, and they may not necessarily be implemented as connection string parameters. Here are some specific comments.
Parameter
Comments
BinaryGUID
We always read and write Guid objects as BLOB. #273 & #191 are about using TEXT
CacheSize
You can send PRAGMA cache_size = <pages>;
DateTimeFormat
We read using DateTime.Parse and write using yyyy-MM-dd HH:mm:ss.FFFFFFF
DateTimeKind
We ignore DateTime.DateTimeKind
FailIfMissing
You can use Mode = SqliteOpenMode.ReadWrite
JournalMode
You can send PRAGMA journal_mode = <mode>;
LegacyFormat
You can send PRAGMA legacy_file_format = 1;
PageSize
You can send PRAGMA page_size = <bytes>;
Pooling
We don't pool connections. It's not as important as on other databases where there's a network connection
Firstly great implementation and thank you for that :-)
I am planning on migrating an existing code-base currently using System.Data.Sqlite over to Microsoft.Data.Sqlite however I have the following method which allows me to build my connection string:
None of these flags or properties seem to be supported in Microsoft.Data.Sqlite. Is there a plan to support them?
The text was updated successfully, but these errors were encountered: