mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Make TConnectionParameters.IsMySQL specific to MySQL only, and rename the grouped type checks to IsAnyMySQL, IsAnyMSSQL etc. This way the status bar now shows "MySQL", not "MySQL or MariaDB"
This commit is contained in:
@ -629,7 +629,7 @@ begin
|
||||
// Import binaries as-is (byte for byte), and auto-detect encoding of text files.
|
||||
if FileInfo.IsBinary then begin
|
||||
FileContent := '';
|
||||
if FConnection.Parameters.IsMySQL then
|
||||
if FConnection.Parameters.IsAnyMySQL then
|
||||
FileContent := '_binary ';
|
||||
FileContent := FileContent + '0x' + BinToWideHex(ReadBinaryFile(FileInfo.Filename, 0))
|
||||
end else
|
||||
|
Reference in New Issue
Block a user