: (
(midwest.social)
(midwest.social)
But that's IFF.
create table boolean (
id integer primary key,
name text not null unique
)
insert into boolean (name) values ('true');
insert into boolean (name) values ('false');
create table document (
id integer primary key,
name text not null unique,
body text not null,
is_archived not null integer,
foreign key (is_archived) references boolean (id)
on delete cascade
on update no action
);
Solved.
Bonus: DBAs hate this one weird trick that can free up incredible amounts of disk space by deleting just two rows.
Would this make 0 = true and 1 = false?
You're right, that's way too simple. Definitely need to rotate the booleans daily. For... security. Yeah, security.
That on delete cascade is evil. I love it.
I think you got the wrong caption. It's the world if SQLite supported multiple concurent writes.
Stupid transaction deadlocks...
WAL mode makes writes a lot faster, which is sufficient for a bunch of use cases. Writers do still need to wait, but they have to wait for a shorter duration. It's still not the right choice for write-heavy use cases, of course.
I'm not actually looking for the speed most of the time, but more about preventing partial writes, so I'm still using it
In my case, I want to use sqlite locally, for development, but I don't want to add a load of jank to handle booleans for sqlite.
This is sqlite's intended use case. To replace configure files and local data
I use rust's SQLx which map bools to numbers so it must be a problem with your connector maybe
username checks out
so it must be a problem with your connector maybe
or with their programming language
I actually started using rust well after picking this username :P
Yeah I should probably open an issue.
That’s what I like about Ruby ORMs. They did all the conversion for you, and you could have SQLite on your dev box, Postgres on the test server and MySQL on the annoying production host that wouldn’t run anything else.
This was 18 years ago though.
What do you use instead of booleans ? floats ?
Smallest INT it can support and only ever use 0 and 1.
strings "true" and "false" ofc like any sane developer
I got a better one: O for true and N for false.
Seen in production for quite important stuff (payment requests).
O is from Oui, N from Non, of course!
😐🫤
good fucking god
it allows for mood changes, some parts of the code can check charAt(0) == 't'others can do val != 'false' just let it flow.
lord mary joseph make it stop
And for double fun if the output doesn’t matter you can make if endsWith(“e”).
Use a CHAR(1) you can then use it as an enumeration.
Don't use T/F for true/false use it for the actual sematic meaning for the thing that the Boolean is toggling. E g. S for subscribed, U for unsubscribed, or whatever.
It also means when you inevitably grow to needing a tri-state it makes sense.
Unless SQLite actually supports enumerations, then just use them
I think you could use a CHECK constraint to effectively create en enum
Sometimes it's 0 and 1
If it just supported sorting by random with a seed..
I can live without Booleans I think... what saddens me more than nothing else is the lack of more proper treatment for Decimal-like types.

Matrix chat room: https://matrix.to/#/#midwestsociallemmy:matrix.org
Communities from our friends:
LiberaPay link: https://liberapay.com/seahorse