Can someone recommend a simple sqlite database browser

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • notinmybackyard
    Confirmed User
    • Sep 2012
    • 3230

    #1

    Can someone recommend a simple sqlite database browser

    I'm looking for something that isn't too complicated. In fact the easier it is the better.
    officially retired as of March 01 2018 but still fucking around and getting into shit.
  • BigFurry
    Confirmed User
    • Nov 2003
    • 1574

    #2
    Have you tried https://sqlitebrowser.org/ ?

    Comment

    • notinmybackyard
      Confirmed User
      • Sep 2012
      • 3230

      #3
      Originally posted by BigFurry
      I've never used one before so I've got to say nope. But I'll check this one out
      officially retired as of March 01 2018 but still fucking around and getting into shit.

      Comment

      • Paul&John
        Confirmed User
        • Aug 2005
        • 8643

        #4
        Originally posted by BigFurry
        Using this as well
        Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
        Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies here

        Comment

        • shake
          frc
          • Jul 2003
          • 4663

          #5
          I'd avoid using sqlite if you can avoid it. There are better options like Postgres or even mySQL. Unless you really need just local storage only.
          Crazy fast VPS for $10 a month. Try with $20 free credit

          Comment

          • notinmybackyard
            Confirmed User
            • Sep 2012
            • 3230

            #6
            Originally posted by shake
            I'd avoid using sqlite if you can avoid it. There are better options like Postgres or even mySQL. Unless you really need just local storage only.
            I'm just trying to resurrect some lost emails. So I really don't need anything too complicated.
            officially retired as of March 01 2018 but still fucking around and getting into shit.

            Comment

            • Klen
              • Aug 2006
              • 32235

              #7
              Originally posted by shake
              I'd avoid using sqlite if you can avoid it. There are better options like Postgres or even mySQL. Unless you really need just local storage only.
              I have a lot of experience with sqlite so i can give precise instructions when to use and when not to use it.

              So, first when not to use it:
              1.If you have multi-user app/script . I made a mistake by using sqlite for my tracker script, and as result i had often deadlocks which caused script to be unresponsive and lost some $$$ due that until i finally switched to mysql.

              When to use it:
              1.If you have single user app/script. For example, i have script which i developed 10 years ago and i am only user and so far it works without any bug/error.

              And advantages of sqlite compared to mysql -
              1. Does not require username/password
              2. Easy to backup/have only one file
              3. It can be encrypted easily for free

              Comment

              Working...