SQLite3 / PDO - No such table though it does exist

后端 未结 2 1289
野性不改
野性不改 2021-01-18 19:11

I have a problem with an SQLite3 database where I can access it either with the sqlite3 command or with the PHPStorm built-in database manager but the application I am worki

2条回答
  •  逝去的感伤
    2021-01-18 19:22

    The database that you have opened does not contain this table.

    SQLite will happily open any file name; if it does not exist, it will create a new, empty database.

    Check your database file name.

提交回复
热议问题