We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95f1f59 commit d81cc6cCopy full SHA for d81cc6c
source/mysql_connection.pas
@@ -2109,6 +2109,7 @@ function TMySQLQuery.SaveModifications: Boolean;
2109
Val := 'NULL'
2110
else case Datatype(i).Category of
2111
dtcInteger, dtcReal: Val := Cell.NewText;
2112
+ dtcBinary: Val := '_binary ' + Cell.NewText;
2113
else Val := Connection.EscapeString(Cell.NewText);
2114
end;
2115
sqlUpdate := sqlUpdate + Connection.QuoteIdent(FColumnOrgNames[i]) + '=' + Val;
0 commit comments