Laraadmin and sqlite “SHOW”: syntax error (SQL: SHOW TABLES)
问题 I have installed laraadmin as for quick admin with using sqlite. But problem is when i am going to create something getting SQLSTATE[HY000]: General error: 1 near "SHOW": syntax error (SQL: SHOW TABLES) Thanks 回答1: Unfortunately SQLite doesn't know SHOW TABLES , but instead it has: special command line commands, like .schema or .tables (with optional LIKE patterns) a master metadata table, called sqlite_master So let's say you have the following tables: sqlite> CREATE TABLE A(a INT, b, INT, c