SQLite
SoftwareWikipedia
199
MENTIONS
73
EPISODES
60
PODCASTS
Search complete. 199 mentions across 73 episodes found for "SQLite".
Sep 11, 2026
Episode 367 - Ryan Castillo
C
53:00Chris OliverHOST
And that's kind of how the email... works out too like everybody's like yeah we're in it with you too like you run our stuff and we'd be paying triple if we're on heroku still so yeah you could even charge us double and we're still paying less than heroku so keep going we're developers first and like write code but realizing yeah the more conversations you can have with people, the better.
C
53:26Chris OliverHOST
There's constantly like, yeah, why did we never have SQLite database backups? I just never thought about it for whatever reason.
C
53:35Chris OliverHOST
Somebody emailed in like a month ago and I was like, what? We don't have that.
C
53:40Chris OliverHOST
Let me go do that tonight.
C
53:42Chris OliverHOST
And like shipped it the next day and was like, here you go.
C
53:44Chris OliverHOST
And also everybody else was like, when we announced it, yeah, why didn't you have that? It never crossed my mind, but I just didn't think about it.
R
53:53Ryan CastilloGUEST
Yeah, and that's another feature, right? That's another reason why people don't go to Heroku because they're like, hey, how do I deploy with just SQLite? Yeah.
R
54:03Ryan CastilloGUEST
And how do I do? That's supposed to be removing that barrier of setting up Postgres or MySQL, just having a database file on your directory and deploying that.
How I Turned QR-Coded Chips Into a Multi-Track Musical Instrument on iOS Without Core ML
A
23:25Artificial IntelligenceNARRATOR
For 24 tracks with one integer and one struct each, is perfectly adequate.
A
23:30Artificial IntelligenceNARRATOR
No reason to reach for core data or SQLite.
A
23:33Artificial IntelligenceNARRATOR
Voice control.
A
23:34Artificial IntelligenceNARRATOR
Assigning a loop to a track is done by voice.
Louis Pilfold on Building Gleam - Static Types on the BEAM
L
68:28Louis PilfoldGUEST
This is more for sort of like intermediate to advanced programmers.
L
68:31Louis PilfoldGUEST
It challenges you to make systems like Redis or SQLite or Git, but in a new language.
L
68:37Louis PilfoldGUEST
And it gives you a lovely framework for developing and testing it.
L
68:41Louis PilfoldGUEST
And if you want to do that and support Gleam, there is a, on our documentation page, there is a link, there's a referral link for that.
OpenClaw's New Share Link Includes Your Future Messages
C
12:29CleoHOST
Why does the software suddenly care if I'm running Node 26? What is actually breaking under the hood on older versions?
D
12:35DevHOST
The primary culprit is a dangerous SQLite text truncation risk on unsupported runtimes.
C
12:41CleoHOST
Text truncation.
D
12:42DevHOST
Right.
#562: DuckLake: The Lakehouse That's Just SQL and Parquet
P
26:47Pedro HolandaGUEST
And maybe just to add, the color format also allows you to do vectorized query execution.
P
26:54Pedro HolandaGUEST
The basic idea of vectorized query execution is that you can actually have batches of your data going through your query plan uh in one go right unless you have a pipeline breaker like a join or something like this but usually you can go through the whole query in one go and because you have these batches are sufficiently small they just get cash on your cpu and then you don't have to constantly go through memory to fetch the data anymore while in a tuple uh wise execution which is like what sqlite does and it was created more like when memory was small so you want to like to to just have a little bit of your data in memory, like from the 90s.
P
27:31Pedro HolandaGUEST
You just go and execute through the query plan, tuple by tuple, right? So this causes a bunch of cache misses.
P
27:37Pedro HolandaGUEST
You frequently have to go to memory to fetch the next tuple and so on.
G
32:08Guillermo Sanchez-DionisGUEST
I think the DuckDB experience was always very nice to run on a laptop, right? Or to basically, if you wanted to run like an EDL pipeline, let's say, on an EC2 machine, DuckDB was a great tool.
G
32:22Guillermo Sanchez-DionisGUEST
But I think at least with the original .db file format, there was this sort of limitation around one writer grabbing the log over the file and then no readers can connect to it.
G
32:36Guillermo Sanchez-DionisGUEST
And I think that is not a limitation, of course, if you're running .db in your laptop, but it is a limitation if you want to share a dark db storage with a broader audience quack indeed is something that solves this problem right but then that means of course that you go into the client server kind of architecture i think sqlite does this a little bit different where even on a On a single machine with a single file, you can still have writers and readers at the same time.
G
33:08Guillermo Sanchez-DionisGUEST
But, Greg, if I'm wrong, I want to share about this.
Query binding masks, testing best practices, and codebase audits
J
4:59Jake BennettHOST
MariaDB inherits that MySQL grammar, so it works there too.
J
5:02Jake BennettHOST
Postgres, SQLite, and SQL Server will throw a runtime exception, however, matching how where like handles case-sensitive lookups on engines that already compare case-sensitively.
J
5:12Jake BennettHOST
So be on the lookout for that.
J
5:15Jake BennettHOST
I will say one area where you might use this is in the case that you're using some sort of hash So if you're generating some unique hash and you want to immediately double the available options to you, if you're using case-sensitive options versus case-insensitive options, you have another 26 characters per space, essentially.
5 MINS LATER
J
11:03Jake BennettHOST
In version 2.6.0, the database query will execute queries inside a database enforced read-only transactions.
J
11:10Jake BennettHOST
So on MySQL and MariaDB, Boost issues a set transaction read only before starting.
J
11:16Jake BennettHOST
There's a couple of different implementation details for Postgres and SQLite as well.
J
11:21Jake BennettHOST
Boost will then always roll back the transaction when the query finishes, ensuring that the database engine rejects those modifications, even if a query was to bypass any sort of lexical parsing there.
Why AI Coding Made Me More Productive - And Less Happy | Dillon Mulroy
D
54:18Dillon MulroyGUEST
And I'll jump back to the beginning of the conversation where there's no context.
D
54:22Dillon MulroyGUEST
And they'll be like, how do you use durable objects for SQLite storage? What are the APIs? So I basically build up its understanding of the technologies and the patterns I want it using, and then I have these tiny, concise summarizations of the things it worked itself to, and I bring those back to the main line, and then I start iterating with Planetator to build up a tech spec, which is another interesting thing I think I do maybe a little bit differently than most people.
D
54:54Dillon MulroyGUEST
My tech specs don't look like PRDs.
D
54:56Dillon MulroyGUEST
My tech specs look like code.
J
57:43Jan-Niklas WortmannHOST
So Talk me a little bit through that tree concept a little bit more, because there you lost me for a minute.
J
57:53Jan-Niklas WortmannHOST
So how is that? How do you get back from, so I assume you have like kind of like a couple tree or like branches and leaves at some point then where it's like, okay, this is how Hona works.
J
58:06Jan-Niklas WortmannHOST
This is how SQLite works.
J
58:07Jan-Niklas WortmannHOST
This is how, I don't know, we do testing on the project, right? Like isolated, very isolated context and shared understanding in that space.
Ep. #42, When Forking Becomes a Feature with Will Cory
B
20:31Brian DouglasHOST
But like there's someone who's listening like, oh yeah, we did that like twice last week.
B
20:35Brian DouglasHOST
Like, these, like, massive, like, migrations and rewrites and, like, forking projects and, like, rewriting SQLite into Rust yet again.
B
20:43Brian DouglasHOST
Like, nobody asked for it.
B
20:44Brian DouglasHOST
But actually, the analogy that I was thinking through when you're talking about this, like, with the, like, agents being built on, like, Bash and stuff like that.
28 MINS LATER
J
48:59John McBrideHOST
This guy on Blue Sky who I follow, and I use his feed, the For You feed on Blue Sky.
J
49:06John McBrideHOST
Blue Sky is kind of unique where you can actually subscribe to specific feeds since the whole firehose of data is an open protocol, essentially an open standard in the AT Proto, but For you, I'm just shocked by this.
J
49:20John McBrideHOST
He kind of chronicles how he uses SQLite for this whole thing.
J
49:26John McBrideHOST
That's probably ingesting I mean, what does he say? 20 million likes per day.
TN vs Amad Gatlin: Part 1
S
17:42Stacey EldridgeHOST
And, you know, did you just get a new version on the phone? Have the tools caught up? Are the tools parsing it out all correctly? I know in a recent presentation I attended, they said that The Snapchat data is very complex.
S
17:56Stacey EldridgeHOST
There's something like apparently 26 different SQLite databases associated with it, around 33 different property lists, 85 different directories, and there's a lot of encryption involved.
S
18:09Stacey EldridgeHOST
obviously your mileage is going to vary based on what Snapchat version you're examining, but there's a ton of different places to look for that data.
S
18:17Stacey EldridgeHOST
It's more difficult because encryption is at play at two.
Why Your Baby Tracker Can't Log Oxygen Saturation
H
8:55Herman PoppleberryHOST
Which is? A thin native shell over a user-defined schema, not a full app build.
H
9:01Herman PoppleberryHOST
A single Android app that does one thing, you describe what you want to track, it generates a local SQLite schema, gives you a simple form for each metric, stores everything on device, and exports to CSV or JSON.
H
9:14Herman PoppleberryHOST
The schema generation could be a local LLM call or even a rule-based system.
H
9:20Herman PoppleberryHOST
No cloud, no accounts, no
63 more episodes mention SQLite.
Create an account to see the whole feed, search across every transcript, and follow the entities you care about.