• windows版mysql配置--my.ini


    完整配置如下:

    #  power by phpStudy  2014  www.phpStudy.net  官网下载最新版
    
    [client]
    port=3306
    
    [mysql]
    
    
    [mysqld]
    port=3306
    basedir="D:/soft/phpStudy/MySQL/"
    datadir="D:/soft/phpStudy/MySQL/data/"
    character-set-client-handshake=FALSE
    character-set-server=utf8mb4
    collation-server=utf8mb4_general_ci
    default-storage-engine=InnoDB
    init_connect='set names utf8mb4'
    sql-mode="NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
    max_connections=512
    
    query_cache_size=0
    table_cache=256
    tmp_table_size=18M
    
    thread_cache_size=8
    myisam_max_sort_file_size=64G
    myisam_sort_buffer_size=35M
    key_buffer_size=25M
    read_buffer_size=64K
    read_rnd_buffer_size=256K
    sort_buffer_size=256K
    
    innodb_additional_mem_pool_size=2M
    
    innodb_flush_log_at_trx_commit=1
    innodb_log_buffer_size=1M
    
    innodb_buffer_pool_size=47M
    innodb_log_file_size=24M
    innodb_thread_concurrency=8
    lower_case_table_names=0
    

      以上配置,设置数据库编码为utf8mb4,客户端服务端都是这个编码,以及表名区分大小写(具体可看lower_case_table_name)!

  • 相关阅读:
    MYSQL关键字的使用
    SESSION的使用
    COOKIE的使用
    ES6中的let与const---let与var的区别---详解
    JavaScript中四种数据类型检测的方法
    java数据类型
    讲Windows7的电脑搭建成服务器的教程
    ISS服务器
    用java编写一个万年历程序
    if 条件语句的用法
  • 原文地址:https://www.cnblogs.com/joeblackzqq/p/5465734.html
Copyright © 2020-2023  润新知