SQLite attempt to write a readonly database error

前端 未结 2 1300
谎友^
谎友^ 2021-02-19 11:11

I have a console application that populates a SQLite database. When the application runs by itself, I don\'t get any errors. If I run multiple instances of the application, wher

2条回答
  •  离开以前
    2021-02-19 11:17

    It is a permissions issue.

    Make sure that your web application that is hosted has add/write/create/delete access to the folder where the sqlite database resides.

    For more details, refer this

提交回复
热议问题