-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Make SQLiteAsyncConnection implement IDisposable #305
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
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…rt of work towards removing all #ifdef code
…ll platform-specific code out into separate projects
…h Xamarin Studio)
…k> instead of SQLiteConnectionPool
… DeleteAllAsync<T>)
This was a known issue: http://code.google.com/p/sqlite-net/issues/detail?id=47&
…nnection, now defaults to using TaskScheduler.Default if not specified
[Fix] Nullable types in ExecuteScalar
Exception is not longer thrown when you add a column with NotNull and the table already exists. this requires Default attribute.
Feature/extra type mappings
Added support for default values
Added project for Xamarin.iOS Unified API Added Unified API project to Xamarin.iOS NuGet spec Updated prepare.bat to include Unified API project
Added support for Xamarin.iOS Unified API
When executing a SUM query the method throws NullReferenceException if the table is empty or no rows were selected by the WHERE clause or similar. In these cases SQLite3.ColumnType returns ColType.Null, ReadCol returns null, and the attempted cast to T throws the exception. This fixes #171. (cherry picked from commit 7c5792a) Conflicts: src/SQLite.cs
New NuGet.exe complains otherwise
Owner
|
This is a crazy pull request under the title IDisposable. |
Author
|
what do you mean, the request to make it Idisposable, or the pull request. Anyway, I didn't do any pull requests. |
eric-shim
pushed a commit
to eric-shim/sqlite-net
that referenced
this pull request
May 24, 2017
Added support for REPLACE-function in WHERE-clause
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Need to be able to use SQLiteAsyncConnection in a using statement.