How to insert 4bit character in mysql table?
Hi Sir,
I m facing the issue while using 4bit character insertion for ex create table demo (name text);
insert into demo values('😜𤭢'); in this above example I tried to insert the Japanese language in mysql it through error 1366 after check it on google i found some steps i.e default-character-set=utf8mb4 in [client],[mysql],[mysqld] in .ini file and restart the instance now i checked the variables through on gui using show variables like 'char%' everything is changed ,then i created a table like below create table demo (name text character set utf8mb4);
and insert the values through cmd prompt the values has been inserted but the issue is '😜𤭢' i'm inserted these values but default takes 'dY~o??'
why it happend like these?
what is the exact way to insert 4bit character using uft8mb4?
the utf8mb4 is session based character set or how to set as default character set for my database?
kindly help me
Subject
Views
Written By
Posted
How to insert 4bit character in mysql table?
2103
August 01, 2016 11:49PM
1075
August 03, 2016 02:59PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.