Discussion of article "How to Access the MySQL Database from MQL5 (MQL4)" - page 28
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
It doesn't run on MT5. It requires a different dll ? I see the size in the archives for both MT4 and MT5 is the same.
It doesn't run on MT5. It requires a different dll ? I see the size in the archives for both MT4 and MT5 is the same.
@Eugeniy Lugovoy
I can't understand what he wants? I'm not good with database plugins.
MT4, MySQL 8.0.32 (localhost)
What to do?
@Eugeniy Lugovoy
I can't understand what he wants? I'm not good with DB plugins
MT4, MySQL 8.0.32 (localhost)
What to do?
This error is generated by MySQL, see https://stackoverflow.com/questions/49194719/authentication-plugin-caching-sha2-password-cannot-be-loaded for the solution.
Version 3.0 includes work with UTF-8
I get question marks instead of Cyrillic characters.
part DDL table:
ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_cicolumn type -> text (not varchar)
MT4 dll:
It's returning question marks instead of Cyrillic.
part DDL table:
column type -> text (not varchar)
MT4 dll:
It's returning question marks instead of Cyrillic.
part DDL table:
column type -> text (not varchar)
MT4 dll:
UTF8 goes two-byte, classic so to speak, you use four-byte when defining a table. This is most likely the problem. Text type at the MySQL driver level is not different from varchar.
thanks for the clarification. I can't know everything, that's why I'm asking.
The solution for myself found here.
P.S: Checked for SELECT - it works