-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Microsoft.Data.Sqlite: Use Span overload of sqlite3_prepare_v2 #16202
Labels
area-adonet-sqlite
area-perf
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
type-enhancement
Milestone
Comments
16 tasks
bricelam
added a commit
to bricelam/efcore
that referenced
this issue
Mar 5, 2021
Removes a lot of unnecessary allocations and conversions from utf8 Fixes dotnet#16202
Re-opening since we had to revert this due to ericsink/SQLitePCL.raw#430 |
bricelam
added a commit
to bricelam/efcore
that referenced
this issue
Aug 16, 2021
Since merging, the CI fail rate increased significantly from ericsink/SQLitePCL.raw#430 Fixes dotnet#16202, unresolves dotnet#13837
bricelam
added a commit
to bricelam/efcore
that referenced
this issue
Aug 16, 2021
Since merging, the CI fail rate increased significantly from ericsink/SQLitePCL.raw#430 Fixes dotnet#16202, unresolves dotnet#13837
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area-adonet-sqlite
area-perf
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
type-enhancement
This will avoid unnecessary UTF-8 conversions and copying on commands with multiple statements (aka batches).
I took a stab at this while updating SQLitePCL.raw to 2.0.0, but hit the compiler error "ReadOnlySpan<byte> cannot be used inside iteration blocks" 🤷♂️
The text was updated successfully, but these errors were encountered: