Solution to the Chinese garbled code problem in the decompressed version of MYSQL

Solution to the Chinese garbled code problem in the decompressed version of MYSQL

The decompressed version of MYSQL is installed

1: After decompression, copy a my.ini file and add the byte encoding configuration:

[client]
default-character-set=gbk
[mysqld]
character-set-server=utf8

Specify the database configuration file bin\mysqld --defaults-file=my.ini --initialize-insecure Specify the configuration file my.ini (If you ignore this step, the configuration of my.ini will not take effect, which is a bit of a pitfall)

Install the database: bin/mysqld --install

Start the database service: net start mysql (under Windows environment)

2: Specify the database encoding when creating a database:

3 Specify UTF8 encoding when creating a table:

CREATE TABLE `Demo_Table` (
 `name` varchar(255) NOT NULL,
 `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
 `modified_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP,
 `size` bigint(20) DEFAULT NULL,
 `type` varchar(255) DEFAULT NULL,
 `label` varchar(255) DEFAULT NULL,
 PRIMARY KEY (`name`,`created_by`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution to the garbled code problem in MySQL 5.x
  • How to solve the problem of Chinese garbled characters when using MySQL to obtain database data
  • Example solution for writing garbled Chinese characters into MySQL in PHP
  • MySQL character set garbled characters and solutions
  • Solution to MySQL garbled code problem under Linux
  • How to deal with garbled characters in Mysql database
  • How to solve the problem of Chinese garbled characters when inserting table data into MySQL
  • Solve the problem of Chinese garbled characters when inserting data into MySQL by Tomcat under Linux
  • Summary of handling JDBC connection mysql garbled code exception problem
  • How to solve the DOS window garbled problem in MySQL

<<:  How to completely uninstall node and npm on mac

>>:  JS implements multiple tab switching carousel

Recommend

Basic operation tutorial of files and permissions in centos

Preface Before we begin, we should briefly unders...

VMware configuration hadoop to achieve pseudo-distributed graphic tutorial

1. Experimental Environment serial number project...

Deep understanding of line-height and vertical-align

Several concepts Line box: A box that wraps an in...

my.cnf parameter configuration to optimize InnoDB engine performance

I have read countless my.cnf configurations on th...

Java+Tomcat environment deployment and installation process diagram

Next, I will install Java+Tomcat on Centos7. Ther...

Example of creating circular scrolling progress bar animation using CSS3

theme Today I will teach you how to create a circ...

Detailed steps to install Mysql5.7.19 using yum on Centos7

There is no mysql by default in the yum source of...

JavaScript MouseEvent Case Study

MouseEvent When the mouse performs a certain oper...

js simple and crude publish and subscribe sample code

What is Publish/Subscribe? Let me give you an exa...

Solution to BT Baota Panel php7.3 and php7.4 not supporting ZipArchive

The solution to the problem that the PHP7.3 versi...

The difference between float and position attributes in CSS layout

CSS Layout - position Property The position attri...

Solution to occasional crash of positioning background service on Linux

Problem Description In the recent background serv...

What are the new CSS :where and :is pseudo-class functions?

What are :is and :where? :is() and :where() are p...