sqlite user/password security

后端 未结 4 1952
鱼传尺愫
鱼传尺愫 2020-12-09 16:42

I\'m developing an easy website and I\'m trying a sqlite database. In contrast to MySQL, when you connect to a db you don\'t say and user/password, and with MySQL you do.

4条回答
  •  伪装坚强ぢ
    2020-12-09 17:42

    So, anybody can access it. Isn't it a security hole to keep sensitive information?

    As others have said, it was not a design goal of the SQLite folks. They had other goals, like being able to embed the database code directly in your app.

    You can password protect and encrypt the SQLite database, but you need to use SQLCipher.

提交回复
热议问题