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:
@ -879,7 +879,7 @@ begin
|
||||
Data := ''
|
||||
else if GridData.IsNull(Col) then
|
||||
Data := 'NULL'
|
||||
else if (GridData.DataType(Col).Index = dtBit) and GridData.Connection.Parameters.IsMySQL then
|
||||
else if (GridData.DataType(Col).Index = dtBit) and GridData.Connection.Parameters.IsAnyMySQL then
|
||||
Data := 'b' + esc(Data)
|
||||
else if (GridData.DataType(Col).Category in [dtcText, dtcTemporal, dtcOther])
|
||||
or ((GridData.DataType(Col).Category in [dtcBinary, dtcSpatial]) and Mainform.actBlobAsText.Checked)
|
||||
|
Reference in New Issue
Block a user