SQLite.Net-PCL icon indicating copy to clipboard operation
SQLite.Net-PCL copied to clipboard

Simple, powerful, cross-platform SQLite client and ORM - Updated version with PCL support

Results 100 SQLite.Net-PCL issues
Sort by recently updated
recently updated
newest added

When I try to use the lib from a PCL dll project I get Exception :The type 'Dictionary.Enumerator' is defined in an assembly that is not referenced. You must add...

Good evening! In version 3.0.5 I was creating an Async Connection as follows: `var connectionString = new SQLiteConnectionString(DatabaseFilePath, false);` `var connectionWithLock = new SQLiteConnectionWithLock(new SQLitePlatformAndroid(), connectionString);` `return new SQLiteAsyncConnection(() =>...

Hello, I would like to know if there is away to know if a table has been created using CreateTablesResult properties. I use it like the following to create my...

I've been using [this](https://github.com/praeclarum/sqlite-net/issues/175) to support composite primary keys in my fork of SQLite.Net-PCL. Just wondering whether this can make its way into the official repo?

enhancement

I think issue is not related to library, but when I add library to xamarin.android project, I get the exception "Java Bindings: UnsatisfiedLinkError" the problem is well described here "http://stackoverflow.com/questions/41438799/how-can-i-fix-java-bindings-unsatisfiedlinkerror"....

I'm gettign this message when trying to add this package to Windows Phone 8.1 (Silverlight) library: Using VS2015 Update 3 and WP8.1 SL project with project.json. > Package SQLite.Net-PCL 3.1.1...

I got the following exception: ``` System.ArgumentException was unhandled by user code HResult=-2147024809 Message=savePoint is not valid, and should be the result of a call to SaveTransactionPoint. Parameter name: savePoint...

As soon as I am retrieving a stored value from sqlite back to the app, the DateTime values are not automatically converted back to local time. For example: I am...

What is the difference between Get and Find ?

To recreate, prepare a SQL query ( I know the official character to be used is double-quotes but sqlite does support square brackets as well as grave accent characters -...