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 ...
Kalju Pärn's user avatar
0 votes
0 answers
80 views

I have a UNO platform application that is trying to use SQLite-net-pcl. While this seems to work fine in iOS in release mode in MacCatalyst in release mode i get the following error I am trying to ...
Curtis-C's user avatar
  • 133
3 votes
1 answer
795 views

Here is necessary code segments in my program. My .NET project is .NET MAUI multiproject application. It has different projects for different platforms; WinUI, iOS, Maccatalyst, and Android too. I'm ...
Gayantha's user avatar
  • 538
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 ...
antoniok's user avatar
0 votes
2 answers
611 views

I'm trying to create a counter for a card game, and I'm trying to store the "Matches" with the points on a Database. I have installed the nuget package sqlite-net-pcl, and I'm getting the ...
Nikolas G.'s user avatar
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 ...
user23492987's user avatar
0 votes
0 answers
113 views

Currently when I insert a new object in my database, it goes to the same table based on the data type. For example: sqlDatabase.Insert(myObject); // -> goes to MyObject table. Is it possible to ...
Toto's user avatar
  • 1,022
2 votes
4 answers
1k views

Running the following code, there is an error in the OrdersPrice=g. Sum (p=>p.TotalPrice) line, Why? I want to query the sales data of the corresponding Managers for Orders within the past month, ...
Mr. Luo's user avatar
  • 71
0 votes
1 answer
63 views

I have a following table: folderId folderPath 1 "C:\Users\obama" 2 "C:\Users\biden" Here, folderId is an autoincrement key. Now, insertion into the table has following steps: a)...
bajirao's user avatar
  • 29
1 vote
0 answers
757 views

I have been following this tutorial to implement SQLite-net into my MAUI application. Whenever the program executes "await db.CreateTableAsync<Restroom>();", the whole application ...
K_Ketchup's user avatar
0 votes
1 answer
43 views

Dictionary table: ID Name 1 English 2 Italian Word table references DictionaryID: ID DictionaryId Word 1 1 A 2 1 B 3 2 C I want to achieve a single query with a left join between Dictionary and Word ...
Enrico's user avatar
  • 6,872
1 vote
1 answer
201 views

I have an ASP.NET Core 6 application that uses SQLite. I have a recurring Hangfire job that I'd like to use to back up the database using the online backup API of SQLite. Finally, I'd like to upload ...
Akos Nagy's user avatar
  • 4,399
3 votes
0 answers
612 views

I am working with a SQLite3 Database in my .NET MAUI App. The App is running on Pixel 5 - API 33 (Android 13.0 - API 33)-Emulator right now. Right now, I am doing my SELCT-Statements to verify my ...
OXO's user avatar
  • 1,216
0 votes
1 answer
187 views

Here is the documentation I've looked at and may be helpful: Sample SQLite OneToMany Unit Test and General Read and Write Documentation in Readme My use-case is that I've already inserted an Item and ...
m4gik's user avatar
  • 458
0 votes
1 answer
228 views

As you can see, menu item is working properly in iOS but it's not working in android. this is my code and output : code : <?xml version="1.0" encoding="UTF-8" ?> <...
Sara's user avatar
  • 15
5 votes
3 answers
4k views

I have created a .net standard class library service for accessing a sqlite database in my new Maui app. My question is where to call the initialisation code. I've added the DI registration in ...
David Clarke's user avatar
  • 13.4k
0 votes
0 answers
605 views

I have an SQLite database and 5 classes/data-types (for this example I'm only going to use two of them: expense and category) and a DatabaseService that takes care of adding, deleting, updating and ...
Savyexe's user avatar
  • 81
1 vote
1 answer
41 views

For security reasons, we are not allowed to have our log4net use any external config files (like app.config), so everything has to be coded internally. We are using log4net to write logs to an SQLite ...
Francine DeGrood Taylor's user avatar
0 votes
1 answer
191 views

Ok so my app has a mini problem that I don't know how to save the state of a switch with my prebuilt database (the point is to have a lost of objects and the user can click the switch to mark that ...
egscodes's user avatar
0 votes
1 answer
2k views

Is it good practice to use sqlite sync and async together. Example i need on create method to use sqlite sync but in other thread to update another table async. public class DatabaseHelper { ...
George's user avatar
  • 29
0 votes
1 answer
392 views

I'm trying to print the sum of the score numbers from the database to Label, but I can't get it up and running. I use Entry as input for the score and names and then a button function to store them ...
VronkJ's user avatar
  • 3
10 votes
2 answers
4k views

I am using dotnet 6 on a M1 Pro, and am struggling to use the SQLite-Package. System.DllNotFoundException: Unable to load shared library 'SQLite.Interop.dll' or one of its dependencies. This is the ...
Linsane's user avatar
  • 368
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 ...
Pat Long - Munkii Yebee's user avatar
3 votes
1 answer
3k views

I have a .NET server application running on RHEL (don't ask...) using SQLite as an in-memory database. A single writer thread is updating a bunch of tables using an explicit transaction with external ...
cm17220620's user avatar
0 votes
1 answer
448 views

I am trying to write a generic method to get the data from tables. I am using sqlite-net ORM. My methods compile well for delete: public bool DeleteItem<T>(T NewItem) { SQLiteConnection conn ...
mcelliers's user avatar

1
2 3 4 5
10