Daniel Ding
Results
1
issues of
Daniel Ding
In `Plugin.php`, function [`hasColumn`](https://github.com/AlanDecode/VOID-Plugin/blob/2e2e6dd8a044d6516bcb7b519e068526a34b8046/Plugin.php#L22) and [`hasTable`](https://github.com/AlanDecode/VOID-Plugin/blob/2e2e6dd8a044d6516bcb7b519e068526a34b8046/Plugin.php#L28) use `SHOW COLUMNS` and `SHOW TABLES`, which is not supported by SQLite. Instead, we could use: ```php $sql = "SELECT * FROM pragma_table_info('" ....