default-character-set=utf-8 mysql解决中文乱码有关问题

default-character-set=utf-8 mysql解决中文乱码问题

# MySQL Server Instance Configuration File

# ———————————-

# Generated by the MySQL Server Instance Configuration Wizard

#

#

# Installation Instructions

# ———————————-

#

# On Linux you can copy this file to /etc/my.cnf to set global options,

# mysql-data-dir/my.cnf to set server-specific options

# (@localstatedir@ for this installation) or to

# ~/.my.cnf to set user-specific options.

#

# On Windows you should keep this file in the installation directory 

# of your server (e.g. C:\Program Files\MySQL\MySQL Server 4.1). To

# make sure the server reads the config file use the startup option 

# “–defaults-file”. 

#

# To run run the server from the command line, execute this in a 

# command line shell, e.g.

# mysqld –defaults-file=”C:\Program Files\MySQL\MySQL Server 4.1\my.ini”

#

# To install the server as a Windows service manually, execute this in a 

# command line shell, e.g.

# mysqld –install MySQL41 –defaults-file=”C:\Program Files\MySQL\MySQL Server 4.1\my.ini”

#

# And then execute this in a command line shell to start the server, e.g.

# net start MySQL41

#

#

# Guildlines for editing this file

# ———————————-

#

# In this file, you can use all long options that the program supports.

# If you want to know the options a program supports, start the program

# with the “–help” option.

#

# More detailed information about the individual options can also be

# found in the manual.

#

#

# CLIENT SECTION

# ———————————-

#

# The following options will be read by MySQL client applications.

# Note that only client applications shipped by MySQL are guaranteed

# to read this section. If you want your own MySQL client program to

# honor these values, you need to specify it as an option during the

# MySQL client library initialization.

#

[client]

port=3306

[mysql]

default-character-set=utf-8

# SERVER SECTION

# ———————————-

#

# The following options will be read by the MySQL Server. Make sure that

# you have installed the server correctly (see above) so it reads this 

# file.

#

[mysqld]

# The TCP/IP Port the MySQL Server will listen on

port=3306

#Path to installation directory. All paths are usually resolved relative to this.

basedir=”C:/Program Files/MySQL/MySQL Server 5.0/”

#Path to the database root

datadir=”C:/Program Files/MySQL/MySQL Server 5.0/Data/”

# The default character set that will be used when a new schema or table is

# created and no character set is defined

default-character-set=utf-8

# The default storage engine that will be used when create new tables when

default-storage-engine=INNODB

# Set the SQL mode to strict

sql-mode=”STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION”

# The maximum amount of concurrent sessions the MySQL server will

# allow. One of these connections will be reserved for a user with

# SUPER privileges to allow the administrator to login even if the

# connection limit has been reached.

max_connections=100

# Query cache is used to cache SELECT results and later return them

# without actual executing the same query once again. Having the query

# cache enabled may result in significant speed improvements, if your

# have a lot of identical queries and rarely changing tables. See the

# “Qcache_lowmem_prunes” status variable to check if the current value

# is high e

default-character-set=utf-8 mysql解决中文乱码有关问题

相关文章:

你感兴趣的文章:

标签云: