Peter Knut
Peter Knut
It should not be closed. @LionelLaffineur Feel free to cherry pick this fix: https://github.com/pematon/adminer/commit/353cd452a38cf4d0ce6ee5e04992f9249742f6ca > OT but it seems a shame that we might end up with two competing forks...
In MySQL, `\'` is the escape sequence for `'`: https://dev.mysql.com/doc/refman/8.4/en/string-literals.html#character-escape-sequences So query splitting should be conditional according to the language dialect.
Thanks for sharing, but your fix contains several problems: * C-style escapes depends on SQL dialect and server settings. * String constants letter `E` is PostgreSQL specific and is case-insensitive....
It is useful to add more parameters. `` Everything is here: https://github.com/pematon/adminer/commit/146a24efad4e068cf602f38fb0397b3afd62b628
Prefix `sqlite_` is forbidden for table names and it looks like the same applies also to indices. Just use different name instead of `sqlite_autoindex_version_1`: ```sql CREATE UNIQUE INDEX "autoindex_version_1" ON...
I understand now. It is not related to table's name. Adminer also does not add `sqlite_` prefix. That prefix is created by SQLite itself if you create a table like...
@everslick My fork is not very related to AdminerEvo, it contains mainly my own work. Evo is more community oriented. My fixes will land here if somebody (maintainer) will cherry...
Include and display it! 😉 No config needed. It is useful and poses no harm.
You need to configure SSL certificate in AdminerLoginSsl plugin. Something like this: index.php ```php
Looks good, fixed in https://github.com/pematon/adminer/commit/374b8ed6a6bc8d2f3a5a30170d2677f680a984a7