Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
420 views

I'm trying to set up testing using pest in a laravel project. I have several migrations which are stored in ./test/database/migrations, and I'd like to spin up a new sqlite in-memory database using ...
mankowitz's user avatar
  • 2,115
1 vote
0 answers
33 views

I'm using Qt 5.14.2 with SQLite3. In the function below, I attempt to drop two temporary tables: "COPYPL" and "COPYPL1". Most of the time this works fine, but with some SQLite ...
user30293258's user avatar
1 vote
1 answer
26 views

I am trying to update some fields on results from an inner join. The select statement with the inner join works correctly. Unfortunately I am trying to replace statement by an update and I am getting ...
Daniel Paquin's user avatar
-1 votes
1 answer
78 views

I've built a program that converts an Excel sheet containing my departments schedule to a SQL table. We always work in pairs so I want to be able to check all my shifts and what person I'll be working ...
HighestPie's user avatar
0 votes
1 answer
41 views

I have a virtual full text search table in SQLite. I can query it like this. select body from my_table where body match 'foo'; This works great to return an entire row that matches 'foo'. However, my ...
425nesp's user avatar
  • 7,699
0 votes
0 answers
95 views

I have already gone through quite a few answers on SO (eg. this one and this one, but none of them seem to work for me. I am using SQLAlchemy with sqlite, python 3.13.3. In case it matters, this is ...
Wrichik Basu's user avatar
  • 1,403
2 votes
1 answer
52 views

I am working on a timesheet application for a client. The User model in django is used for storing user data. But I am using a timesheet table to store User information related to the company (like ...
SAP ASFlash's user avatar
0 votes
1 answer
64 views

I am trying to access a database named 'app.db' through sqlite3.connect() using a config with the URI of the file. I am also running this in a virtual enviornment and I am on windows. Here is where I ...
Lifeable's user avatar
0 votes
1 answer
61 views

I have a system where I am trying to achieve a single point of action for writing to a database. For this I am using Queues, I fetch a record from a queue and add to a list. Once I have a required ...
mraabhijit's user avatar
0 votes
0 answers
79 views

I am currently working on a project where I need to monitor the actual bytes written to flash storage after performing insert operations in an SQLite database. I've simplified my approach to the ...
user12345's user avatar
  • 671
0 votes
0 answers
48 views

By using 64-bit DLL (x64) for SQLite version from here and documentation from here i'm trying to use Sqlite in Fasm for of course quite reasonable reasons. When trying to sqlite3_open a new db file ...
Alexandr's user avatar
0 votes
0 answers
138 views

I have the following Polars code that reads a Parquet file and writes it to an SQLite database: data = pl.scan_parquet(get_dataset_path()).collect() _ = data.write_database( table_name="...
Kamil Kleina's user avatar
0 votes
1 answer
110 views

I have a simple todos table in SQLite that I'm trying to query using Gleam. My code is as follows: pub type Todo { Todo(id: Int, title: String, completed: Int) } fn todo_encoder() -> decode....
jwesonga's user avatar
  • 4,393
0 votes
0 answers
58 views

I am writing webapplication in Next.js, Drizzle-orm, sqlite and tested it on local machine, its working without any issues but when I move to hostinger.com VPS server its not working. It gives 500 ...
FijiWeb's user avatar
1 vote
0 answers
102 views

I have a small, home-grown application that uses an sqlite database. Because multiple processes can (and do) try to update/insert at the same time, I receive a "database locked" error. I ...
bdixon's user avatar
  • 11
0 votes
0 answers
189 views

I am creating a RAG application with streamlit and I am using Chroma DB to store my collections. Depending on the persist_collection parameter, I am using either chromadb.PersistentClient or chromadb....
Filip Szczybura's user avatar
2 votes
2 answers
77 views

I have a SQLite table with a column num (data type: text) 1.100.00 2.3025.00 2.000.00 3.500.16 4.3124.00 I would like to remove the first period. The column should then look like this: 1100.00 23025....
IamBeginner's user avatar
0 votes
0 answers
74 views

@override def connect(self, *args: Any, **kwargs: Any) -> Connection: if hasattr(self._connection, "conn") and self._connection.conn is not None: return self....
Novak Xie's user avatar
0 votes
1 answer
57 views

I'm writting an employee calender website as a practice project but i can't get my SQL conditions to work I have the following relevent code: from flask import Flask, render_template, request, ...
user29400796's user avatar
0 votes
1 answer
77 views

I have this code in Visual Studio: sqlite.Open(); //Initiate connection to the db string stmEP = "select a.portata,a.quantita,b.QUANTITA_ATTUALE,a.COSTO_UNITARIO,a.SPESA_PORTATA from ORDINI a ...
Gianluca Bendinelli's user avatar
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: ...
Carlos H's user avatar
  • 770
0 votes
1 answer
80 views

I am trying to describe the schema of this kaggle dataset. Are there primary keys? If there are primary keys, how do I figure out which they are? Which columns are foreign keys? # Reconnect to the ...
Carolyn Ryan's user avatar
0 votes
0 answers
53 views

I am inserting a few thousand rows into a table with a UNIQUE constraint, using cursor.executemany(). On some occasions the data may have a duplicate which violates the constraint, and sqlite throws ...
DS_London's user avatar
  • 4,331
0 votes
1 answer
108 views

When I run sqlite3 interactively with the -echo option, every command I type gets echoed before its output, as expected: $ sqlite3 -echo database.db SQLite version 3.45.1 2024-01-30 16:01:20 Enter &...
NeatNit's user avatar
  • 675
2 votes
1 answer
44 views

I'm using jOOQ version 3.19 (unable to upgrade to 3.20 as currently on Java 17) and not the codegen library, just the plain org.jooq lib. I'm reading from a SQLite database which has some Integer ...
kmxp's user avatar
  • 47