Elektrine lite

← Feed

@monospace@floss.social

Post #1816497

2026-04-27 07:41 UTC

📖 Interesting read: "Why you should probably be using SQLite" https://www.epicweb.dev/why-you-should-probably-be-using-sqlite #database #softwareengineering

Replies (1)

  • @truls46@mastodon.social 2026-04-27 07:47

    @monospace My biggest gripe with SQLite is their non-existing data type system which permits storing any value in a column regardless of the data type it was defined with (in fact, the type is optional and completely ignored) https://dbfiddle.uk/hQNQafJm The new "strict" tables solve this only partially, as that is only available for a limited number of data types

    Open ##1820171