Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
67 views

In Entity Framework Core 9.0.9, the query builder fails with SQLite Syntax builder.Services.AddDbContext<MyDbContext>(fun options -> options.UseSqlite(connectionString) |> ignore It ...
0 votes
0 answers
35 views

I am working on a MAUI application which uses sqlite-net-pcl as its ORM. When I try to delete the DB file from the app (System.IO.File.Delete(dbFilePath)) I get the following exception on Windows: ...
0 votes
0 answers
70 views

I've configured the ASP.NET Core Web API using controller to use Sqlite as the database, and after the request of adding new item, the item is not being saved to the database. The POST request ...
0 votes
0 answers
269 views

I am an amateur, trying to write an app that uses a sqlite database. I want the app to have read/write access to the Documents folder on my Android phone. However, I am having trouble with read/write ...
1 vote
0 answers
429 views

I want to fetch data from SQLite database in Maui using raw Query. But while trying this function I am getting error: >{System.ArgumentNullException: Value cannot be null. (Parameter 'type') at ...
2 votes
0 answers
261 views

Using SQLite I'm trying to do a case-insensitive search on a string column, however it's only returning results when the case matches the column exactly. The connection is setup as: new ...
0 votes
0 answers
48 views

I have a table Person with ID(Guid), FirstName(string), LastName(string) and 3000 entries. What I desperately need is the rank of a certain entry by ID in a sorted query by FirstName and LastName. So ...
0 votes
0 answers
138 views

I'm using SQLite.net (https://github.com/praeclarum/sqlite-net) in my Xamarin Forms project and trying to save a user's projects in the database. In order to make sure there won't be any duplicates, I ...
0 votes
0 answers
102 views

We are using SQLite.NET (1.5.231) in a Xamarin project We execute Get queries like this var result = await db.Table<T>().Where(query).ToListAsync(); Where db is a SQLiteAsyncConnection and ...
0 votes
0 answers
331 views

I have created the Desktop application with .NET Framework, Version=v4.6.1. I have SQLite database. I can able to communicate with the database in the development environment. When I have created the ...
0 votes
0 answers
328 views

I am using Xamarin c# linq with sqlite-net pcl (https://github.com/praeclarum/sqlite-net). I found that all my linq groupby cannot be properly translated into SQL. Linq translates the Where clause but ...
0 votes
0 answers
133 views

I've been stuck for this whole day on one thing. Im using SQLITE to build a local database for my xamarin app and I wanted to insert some data as follow : [Table("Localisations")] public ...
1 vote
0 answers
386 views

Queries that return a lot of data from an SQLite database use RAM that is never released. The RAM use is many times larger than the database and eventually leads to Windows out of memory errors and ...
1 vote
0 answers
386 views

I'm developing a cross-platform app using Xamarin. Now, for data storage I'm using both Online (through API) and offline(SQLite). The app I want to develop has dynamic UI and the UI configuration is ...
0 votes
0 answers
42 views

Here I am trying to get the user which logged on the login page but I don't understand why _id, name and class can't get any data in the method. public class Login { SQLiteConnection ...
0 votes
0 answers
1k views

Getting SQLite.TableQuery Member access failed to compile expression, while registering Async Table query public AsyncTableQuery<AppStateEvent> AppStateEvents => this.Table<...
0 votes
0 answers
48 views

One of the functionality that I'm developing allows end-user to view their own database like a Database Browser. I would like to allow them to Select and Update freely but not Drop or Delete. I'm ...
3 votes
0 answers
154 views

I'm using sqlite-net and sqlite-net-extensions for the blob in a Xamarin.Android project. I have this schema: public enum TemplateCategories { Emojis, Stars, Hearts, ...
2 votes
0 answers
1k views

The ASP.NET Core 2.2 project references Microsoft.EntityFrameworkCore.Sqlite (2.2.3) as a PackageReference. Debugging the app in IIS Express works fine, because of the elevated user process. Problem:...
1 vote
0 answers
189 views

I had to change android build from x86 to x64, and after doing that an error occurs while trying to create a table in sqllite using xamarin public ObraDao(ISqliteConnectionService connectionService) ...
0 votes
0 answers
84 views

On my UWP app, I have a class named DBContext which provides a live connection to an SQLite DB on a singleton manner. I have a few heavy DB write statements to execute periodically which might take ...
0 votes
0 answers
237 views

One of my client's inventory management project supports online as well as offline mode to manage huge inventory data and is built using Xamarin.Forms & sqlite-net. Now, the client wants to create ...
1 vote
0 answers
715 views

I have been using the SQLite.cs and SQLiteAsync.cs classes in my Shared Poject for over a year without issue. However, Google now requires that you set Android projects with a target of at least 8.0 (...
0 votes
0 answers
504 views

I'm using Visual Studio For Mac. I'm getting an exception error in my previewer stating "An exception occurred while rendering the control". When I click the exclamation mark for details it states ...
0 votes
0 answers
397 views

I'm using SQLite.Net-PCL nugget and when I try to deploy in a Android Device with API Level 24 I get this error "libmonosgen-64bit-2.0.so unauthorized access to "/system/lib64/libsqlite.so" The thing ...