-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added option to sture Guids as Blobs #284 #739
base: master
Are you sure you want to change the base?
Conversation
…o BindParameter (Sqlite3Statement stmt,...
I need some help please: |
@praeclarum - what am I doing wrong? |
It seems that the build is not configured anymore. Also, I found a (in my opinion) major issue with the current source code version. See #740 |
…ing the connection at all leads to a NullReferenceException (as no Entry exists that can be Closed())
Hi! |
…nd set AssemblyVersion to 1.1.0.0 also for compatibility
@praeclarum any chance this will ever get merged back, one of the databases I am working on uses BLOBs to store GUIDs, so having this would make reading the GUIDs valid for that column, right now I have to manually parse that entire table into the object representation because of the BLOBs. |
Hi!
This PR adds the ability to store guids as blobs in the database and fixes issue #284
I added unit tests for both, async and sync connection.
This feature is very important for interoperability with EF Core, which is based on Microsoft.Data.Sqlite. The latter stores guids as blobs always and does not, and will never support any other option, as can be read in the following issue:
aspnet/Microsoft.Data.Sqlite#273
Also: I found a nice article which can help to look at the blob-guids in the database - as they are obviously not that readable anymore...
https://neosmart.net/blog/2018/converting-a-binary-blob-guid-to-text-in-sql/