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

I want 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 ...
LUN2's user avatar
  • 11
Best practices
0 votes
1 replies
46 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
Best practices
11 votes
11 replies
2k views

I built a small relational database as a personal learning project. It is around 10,000 lines of code and already includes many of the core parts of a basic relational database, such as page-based ...
凉宫春日's user avatar
0 votes
0 answers
70 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
63 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
2 votes
2 answers
156 views

I want the recursive bit that goes down in values be the values of c in the pc table and up in values be the plus_one recursive formula until the value from plus_one is greater than the one coming ...
branco's user avatar
  • 315
Advice
0 votes
0 replies
36 views

I have developed a node.js website with both front and backend elements. The app runs alright locally (with npm start). I've been trying to get it hosted with Heliohost. The frontend pages load ...
Huck Phin's user avatar
0 votes
1 answer
63 views

I have a parent table created by the following statement: Create Table "GL_Cash_Book" ( "y_trans_code" Integer Not Null, "trans_date" Integer Default ...
Kobby Adom's user avatar
0 votes
1 answer
105 views

I'm trying to display the contents of a (local) sqlite table in Excel. I want to use "Python in Excel" for various reasons. This is the code I have written in cell A1 using the PY() formula: ...
Tantalan's user avatar
-1 votes
0 answers
60 views

I have two small devices, A and B. Device A continuously reads and writes to a SQLite database in WAL mode called mydata.sqlite. At regular intervals, a different process synchronizes this file from ...
schande's user avatar
  • 682
-1 votes
1 answer
101 views

I have a query on my SQLite3 database where one of the columns results in JSON, produced via the built-in JSON functions. When I set the output format to JSON as well, I would have expected that this ...
Eike Schulte's user avatar
3 votes
3 answers
139 views

I use a parent-child table with a linked list to denote the order of children. This provides correct results but takes two recursive CTE steps: one to assign a position idx to each child, then again ...
Gary's user avatar
  • 3,296
0 votes
0 answers
36 views

I added a new column to an existing SQLAlchemy ORM model in an SQLite-backed application. My model: class User(Base): __tablename__ = "users" id = Column(String(36), primary_key=True)...
郭瀚澤's user avatar
Advice
0 votes
3 replies
72 views

I'm experimenting with building an embedded SQL engine for Node.js and Bun. The idea is similar to SQLite, but the engine aims to support a large subset of PostgreSQL syntax such as: - joins - CTEs - ...
Nguyễn Thanh Sơn 's user avatar
1 vote
0 answers
140 views

Why am I getting wrong inserts in some chained insert triggers in SQLite (Cloudflare D1)? Table arrivals has an insert trigger that inserts rows via INSERT OR IGNORE into table places. Table places ...
Mitya's user avatar
  • 34.8k

15 30 50 per page
1
2 3 4 5
6335