• Fargeol
    link
    fedilink
    216 hours ago

    “You know what ELSE everybody likes? Postgres! Have you ever met a person, you say, ‘Let’s use some Postgres,’ they say, ‘Hell no, I don’t like Postgres’? Postgres is perfect!”

    • @RustyNova@lemmy.world
      link
      fedilink
      33 hours ago

      I 100% agree… If you don’t need portable databases. For those, everybody like SQLite (even if it can be annoying sometimes)

  • Psaldorn
    link
    fedilink
    24 hours ago

    Had to roll my own JSON storage system after spending weeks trying to get sqlite to work on Godot/android.

    It took a day and will suck at scale because there are no indexes. It just goes through the whole file, line by line when you search for an id.

    BUT IT WORKS.

    Hopefully the repos and stuff I piled on top have made it abstract able enough I can move it to a real database if the issue ever gets resolved.

    • @sunbeam60@lemmy.ml
      link
      fedilink
      94 hours ago

      I’m confused about your SQLite troubles … it compiles for pretty much everything - as long as you have a file system mapping.