Good day,
I'm having some troubles with inserting data into my MySQL table using Navicat. I have set everywhere UTF-8, but still some strings are inserted incorrectly.
One example:
Legendární dračí onyx
Got inserted as:
Legendárnà dračà onyx
Places, where I have UTF-8 set:
- Connection properties -> Encoding -> UTF-8
- Database properties -> Character set -> utf8 -- UTF-8 Unicode
- Database properties -> Collation -> utf8_general_ci
- Design Table -> Options -> Character set -> utf8 -- UTF-8 Unicode
- Design Table -> Options -> Collation -> utf8_general_ci
- File with query has encoding UTF-8 (set in PS-PAD) without BOM
Problem is: Fields with those wrongly inserted strings are type varbinary (I cannot change that).
How can I insert those UTF8 strings, so they will be inserted correctly AS IS ?
Thank you.
SET NAMES 'utf8'; SET CHARACTER SET 'utf8';- Jaylen