Learned this from a friend. The types are null, integer, real, text, and blob. My friend describes them thusly:

  • Null stores nothing, but like, actively nothing, as opposed to the absence of a thing.
  • Integer is a signed integer, up to 8 bytes.
  • Real is always an 8-byte float.
  • Text is an arbitrary-length UTF-8 or UTF-16.
  • Blob is an arbitrary-length anything-else. But I hope you remembered what you put there. Because it sure isn’t gonna tell you. Oh, and it doesn’t have strong typing, so if you ask for it back as an integer, it’ll quite happily give you it back as an integer, especially if that doesn’t make sense!
  • bionicjoey
    link
    fedilink
    arrow-up
    20
    ·
    edit-2
    6 months ago

    IMO this is fine. The whole point of sqlite is to be as lightweight as possible. It doesn’t need the bloat introduced by any other types. Blobs + data serialization in the client library will be good enough for most other cases.

      • incogtino@lemmy.zip
        link
        fedilink
        English
        arrow-up
        18
        ·
        6 months ago

        Lol I just make sure they’re formatted as ISO dates or timestamps and store them as text, you can do good enough date operations on them

        • hangukdise@lemmy.ml
          link
          fedilink
          arrow-up
          7
          ·
          edit-2
          6 months ago

          This. Lexical sort works on dates stored as text in ISO format. For times, better standardize in storing in UTC and converting to and from local time. Although storage will suffer as this consumes way more data than storing as number.

      • Hexarei@programming.dev
        link
        fedilink
        arrow-up
        15
        ·
        6 months ago

        because I’m objectively a terrible programmer.

        Sounds like you know enough to know you don’t know that much, which means you’re a better programmer than you think!

      • CosmicTurtle@lemmy.world
        link
        fedilink
        English
        arrow-up
        4
        arrow-down
        1
        ·
        6 months ago

        because I’m objectively a terrible programmer.

        This comment made me chuckle at 6am. I was expecting some sort of profound reason to store them at text.

        I’ve gotten used to storing dates as numbers and then just using some sort of library to convert them back to human readable text.

        Dates are much easier to work with when they are numbers.

      • fiah@discuss.tchncs.de
        link
        fedilink
        arrow-up
        2
        arrow-down
        1
        ·
        6 months ago

        Personally, I would probably just store them as text, because I’m objectively a terrible programmer.

        I don’t know man, I’d far prefer storing a string and have whatever date library I’m using figure it out than have to deal with whatever the database thinks about dates and timestamps

          • fiah@discuss.tchncs.de
            link
            fedilink
            arrow-up
            2
            ·
            6 months ago

            why not? assuming you’re saving them all in UTC they should be perfectly sortable and comparable (before, equal, after) as strings, even with varying amounts of precision when you compare substrings. You can’t really do math with them of course, but that’s what I meant about how DBs interpret dates and time: if you use it do to math and then you also use your application’s date library to do math, you’ll likely run into situations where the two come to different answers due to timezone settings, environments, DB drivers and the like. Of course if I could rely on the DB to do the math exactly the way I’d expect it to, then having that ability is awesome, however that requires more knowledge about databases and their environments than I currently have

            • ramirezmike@programming.dev
              link
              fedilink
              arrow-up
              2
              ·
              6 months ago

              obviously it depends on your requirements but what I meant was you can’t compare them at the DB level within queries… you have to pull the data out into your application layer to use your date library.

              The problem there is you effectively need to grab more data than you need to answer queries like “which record has the most recent date” or “give me all the records between the values of the result of this subquery”. it can quickly become a massive bottleneck and may even prevent you from doing certain types of queries at all due to memory limitations.

              • fiah@discuss.tchncs.de
                link
                fedilink
                arrow-up
                3
                ·
                edit-2
                6 months ago

                But, you totally can? When you store all your dates as an ISO 8601 string (UTC, so with Z at the end), you can simply compare the strings themselves with no further complications, if the strings match, the dates match, if one string is less than the other, the date therein is before the other. Their lexical order is equal to their chronological order

                I agree that it’s a massive and unnecessary overhead that you should definitely avoid if possible, but for anything where this overhead is negligible it’s a very viable and safe way of storing date and time

                edit: I forgot, there’s also a format that’s output by functions like toUTCstring that’s totally different and doesn’t have any logical order, but I honestly forgot about that format because nobody in their right mind would use it

  • eran_morad@lemmy.world
    link
    fedilink
    arrow-up
    6
    ·
    6 months ago

    Anyone else here use R (+ openxlsx2) + SQLite to produce Excel reports? I’m finding that to be way better than flat file bullshit and writing macros.

    • BeigeAgenda
      link
      fedilink
      arrow-up
      3
      ·
      6 months ago

      I started a project trying to use excel to analyse data, but quickly found that it’s very limited, then I dumped the data into SQLite and added a statistics plugin, and bingo!

  • BradleyUffner@lemmy.world
    link
    fedilink
    English
    arrow-up
    7
    arrow-down
    2
    ·
    edit-2
    6 months ago

    “Null” is not a distinct data type. It’s a specific value that a data type can contain.

      • BradleyUffner@lemmy.world
        link
        fedilink
        English
        arrow-up
        5
        ·
        edit-2
        6 months ago

        Conceptually, as in what the null represents at the DB level, yes. Logically, at the software level, I’d say sort of, but not really. It’s complicated. Does it make sense to compare values of fundamentally different types?

        • Kogasa@programming.dev
          link
          fedilink
          arrow-up
          3
          ·
          6 months ago

          In a system like Java’s where everything derives from a common object class one can say null is a valid value of object type, so any two null values are equivalent. With ANSI nulls, even null isn’t equivalent to null.

  • packadal@beehaw.org
    link
    fedilink
    arrow-up
    3
    ·
    6 months ago

    Have you ever tried storing a string in an INTEGER column ?

    Due to a bug it happened in a software I worked on.

    SQLite just stores the string. I have no idea if the column type has any real effect on storage as far as SQLite is concerned.