forked from praeclarum/sqlite-net
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Merge in latest sqlite-net enhancements #1
Merged
Merged
Conversation
This file contains 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
Concurrency Test to prove failure on iOS
Boxing required in EnumCacheInfo to avoid invalid cast exception
Fix broken doc comments.
-SQLiteAsync added support for ThenBy ThenByDescending
fix for bundle_green ByteArray Empty vs null test
Use IsDefined to check for IgnoreAttribute
Fix for Nullable Enum
…tem.String methods used to construct the query: Contains is case sensitive, using instr() instead of like(). ToUpper() or ToLower can be used to compare without case sensitivity. StartsWith and EndsWith is case sensitive unless a case insensitive StringComparison argument is passed using substr() = ? or the original like() depending upon case sensitivity
This is work for #601
…ring as database path
…ate the table accordingly
Fixes #492: Create temporary on-disk database by specificing empty st…
#595: Implements specifying WithoutRowId on the TableAttribute to cre…
This commit is going in so I can work on the CI side. Still need to add support for the `key` pragma. Working on #597
The key quoting is not perfect - need to improve it in the future. Working on #597
Now when in full mutex mode (serialized), reading can happen without locking.
Added Uri, UriBuilder and StringBuilder support as column types
Updated .gitignore to modern set
VS2015 can't handle the portable PDB format used by mono. Fixes #614
These methods can fail with BUSY without terminating the transaction. This caused problems with maintaining the transaction depth and also put a burdern on the user to try committing again, or rolling back. To simplify things, an automatic rollback as been added. Now when transactions fail with BUSY, they also rollback and terminate. Fixes #604
…2011/10/24/task-run-vs-task-factory-startnew/ add default Task.Factory.StartNew parameter to do the same with Task.Run
allow queries like var nullableInt = default(int?); connection .Table<Test>() .Where(x => x.Int < nullableInt); which is equivalent to connection .Query<Test>("SELECT * FROM [Test] WHERE [Int] < ?", nullableInt);
use default parameter to Task.Factory.StartNew to do the same as Task.Run
allow comparison with nullable parameter
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.
No description provided.