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!
  • Smithy (she/her)@lemmy.dbzer0.comOP
    link
    fedilink
    English
    arrow-up
    16
    ·
    7 months ago

    I understand that the way you’re “supposed” to store dates is to convert them to timestamps, and store them as either integers or reals.

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

    • Hexarei@programming.dev
      link
      fedilink
      arrow-up
      15
      ·
      7 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!

    • incogtino@lemmy.zip
      link
      fedilink
      English
      arrow-up
      15
      ·
      7 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
        6
        ·
        edit-2
        7 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.

    • CosmicTurtle@lemmy.world
      link
      fedilink
      English
      arrow-up
      4
      arrow-down
      1
      ·
      7 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.

      • Smithy (she/her)@lemmy.dbzer0.comOP
        link
        fedilink
        English
        arrow-up
        3
        ·
        7 months ago

        Oh I’m fully aware that I’m bad at coding, but I don’t do any more than simple scripting. Functional Python is the closest I get to full-on programming in earnest.

    • fiah@discuss.tchncs.de
      link
      fedilink
      arrow-up
      2
      arrow-down
      1
      ·
      7 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
          ·
          7 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
            ·
            7 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
              7 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