This is a maintenance release, which basically reintroduces support for legacy password encryption (pre-4.1 hash format).
Get it from the download page.
HeidiSQL 9.1 released
a quick and dirty solution is to
set session collation_connection = latin1_swedish_ci
or whatever you need to use
Yes, all my Chinese words are corrupted now.
MySQL 4.0.23
set session collation_connection = latin1_swedish_ci;
/* SQL Error (1193): Unknown system variable 'collation_connection' */
On MySQL 4.x, HeidiSQL should report a silent error in the log panel, saying something like
After that, you should either see "Charset: utf8" or "Charset: latin1". Not sure if MySQL 4 already had utf8 support. What does your log panel say on that 4.0.23 server?
/* Unknown character set: 'utf8mb4' */
After that, you should either see "Charset: utf8" or "Charset: latin1". Not sure if MySQL 4 already had utf8 support. What does your log panel say on that 4.0.23 server?
this here seems to indicate that the older versions (4.x, 3.23) already had utf8.
a quick and dirty solution is to
set session collation_connection = latin1_swedish_ci
or whatever you need to use
Yes, all my Chinese words are corrupted now.
MySQL 4.0.23
set session collation_connection = latin1_swedish_ci; /* SQL Error (1193): Unknown system variable 'collation_connection' */
indeed you have to use the correct collation, as latin1 doesnt support utf8 you have to find the proper encoding.
in your case you should try utf8_general_ci
and im pretty shure, that you don't have to change anything here, as heidi automaticaly uses the right encoding.
unless you have a repli using a different mysql-version
that was my problem.
and keep in mind, that heidi changes the collation, every time it has to reconnect, e.g. as of lost connection or standby of your client
unless you have a repli using a different mysql-version
that was my problem.
and keep in mind, that heidi changes the collation, every time it has to reconnect, e.g. as of lost connection or standby of your client
Please login to leave a reply, or register at first.