SQLitePCL.pretty
SQLitePCL.pretty copied to clipboard
A pretty face on top of SQLitePCL.raw
updated library version to 1.1.2 and all references to SQLitePCLRaw also to 1.1.2 Added a package.ps1 script to create nuget packages
SQLitePCL.pretty had SQLitePCLRaw.core dependency targeted w/o netcore45, that's why it was impossible to install it in .NET Core, even w/ correct .nuspec (netcore45 already presented). This commit fix it, but...
https://github.com/ericsink/SQLitePCL.raw/pull/151/files
Hi! I migrated SyncClient.SQLite from SQLitePCL to your SQLitePCL.pretty. Honestly, I do like your api better, but there is a pretty serious gotcha: The following code will give you an...
Hi! I just took a glance at your "backuptests" but I could not see whether a restore was also supported. Is that the case? And: is a "backup" the same...
= API with patches = sqlite3_limit - If supported would be on SQLiteDatabaseConnection https://github.com/ericsink/SQLitePCL.raw/pull/36 = Need to write patches for = sqlite3_busy_handler - https://github.com/bordoley/SQLitePCL.pretty/issues/9 sqlite3_extended_result_codes - Supported in Raw. Should...
Might be useful to support the ability to do the following: ``` CSharp var query = SqlQuery.From() .Select(x=> x.Col1, x => x.Col1.Count()) .GroupBy(x => x.Col1) ``` This would be useful...
Currently managed delegates that throw exceptions result in undefined behavior (I expect they would crash sqlite). We could give delegates the ability to throw a SQLiteException instead and grab the...