mirror of
https://github.com/sol1/rustguac.git
synced 2026-09-10 09:35:45 +00:00
ca0327eee1
The Guacamole import parser scanned line by line, so it missed the multi-row INSERT layout that modern mariadb-dump/mysqldump emit by default (VALUES on its own line, one tuple per line). Valid dumps reported "No connections found". Parse whole statements instead, so both the default multi-line format and single-row dumps import correctly. String literals, backtick identifiers, and SQL comments are skipped so embedded semicolons and apostrophes cannot split or corrupt a statement.