Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
52 views

I'm building a web app that uses a SQLite database for persistence, accessed via MikroORM. The database tracks the content of a particular game session, and I want different users to be able to access ...
Grav's user avatar
  • 425
Advice
0 votes
3 replies
62 views

I want to track user input in a small Svelte app using a database, with SQLite preferred. The user input is a questionnaire, along with timestamps for mouse actions (movement, pressed, and hovered ...
Simplicissimus's user avatar
1 vote
1 answer
100 views

I’m encountering a crash when opening an encrypted database using sqflite_sqlcipher on versions above 2.2.1. The same code works fine on 2.2.1, but fails consistently on newer versions. Code Snippet: ...
Aakash Deep's user avatar
0 votes
1 answer
85 views

I want to create a small desktop app where I can see the books I've read and also view the notes I've written about them. I'm using SQLite3 with a database that contains the ID, title, author, and ...
Hugo's user avatar
  • 29
Advice
0 votes
2 replies
109 views

The app can now save the records. My only problem is I'm stock on how the app can use my existing template and automatically insert the data in each cell, while also adjusting the cell format if it's ...
user avatar
-1 votes
0 answers
110 views

I am writing a small script to collect some URL info, and store it in a database. I'm getting the following error: Dropping index: sqlite_autoindex_keywords_1 Traceback (most recent call last): FilX ...
Sid's user avatar
  • 93
0 votes
0 answers
44 views

I'm following the Hanami tutorial documentation for building a web app. I run bin/hanami db migrate and I get the following error: => database db/bookshelf.sqlite migrated in 0.2763s Error: in ...
corgipower's user avatar
0 votes
1 answer
132 views

When using Tcl with SQLite, with database requests arriving at Tcl over a socket, what happens if you try to perform additional database work outside of the request's transaction and after the result ...
Gary's user avatar
  • 1
0 votes
0 answers
98 views

I prepare an SQLite query: std::string sql = "CREATE TEMPORARY TABLE T1 AS SELECT * FROM TABLE1 ; SELECT * FROM T1"; TABLE1 isn't empty. I enumerate rows of the 2nd query (SELECT FROM T1) ...
LUN's user avatar
  • 359
1 vote
1 answer
56 views

In the SQLite command shell I can use .read to run Query.sql and produce the result set. I can export the result set to a .csv file using .output csv and import that into TargetTable. I'd like to ...
JAH1's user avatar
  • 11
0 votes
0 answers
97 views

When I try to log in my user and use check_password_hash() of Werkzeug security, I get 404 redirection link invalid. After adding the try and except clause it gets redirected to my except: 'tuple' ...
Rolaxy's user avatar
  • 1
0 votes
0 answers
165 views

To make a static library with an amalgamation version of SQLite to use in my C++ Builder program I created a static lib project and added 4 files from sqlite.org (C source code as an amalgamation ...
LUN2's user avatar
  • 21
Best practices
0 votes
1 replies
78 views

I've been trying to create my first agent using Langchain. I would like some way to store user details, what questions they may be asking etc to be able to effectively govern how the LLM responds. It'...
RF2's user avatar
  • 51
0 votes
0 answers
82 views

I am refactoring code and implementing repositories. Database access is handled via this singleton: class SQLiteConnectorV2 { private static instance: SQLiteConnectorV2 | null = null; public db: ...
Aleix's user avatar
  • 1
-1 votes
1 answer
81 views

In SQLite: .separator " " # is one space .separator , # is a comma .separator "\t" # is a tab But how can I specify a variable number of spaces for CSV import? E.g.: <<...
Dan Jacobson's user avatar

15 30 50 per page
1
2 3 4 5
6333