zoukankan      html  css  js  c++  java
  • 设置mysql表名大小写不敏感

    在跨平台的程序设计中要注意到mysql的一些系统变量在windows和linux上的缺省值是不同的, 比如mysql表名称的大小写变量.

    在windows上lower_case_table_names变量的缺省值为1; 在linux上为0; 在mac os上为2; 

    该变量值的详细定义如下:

    ValueMeaning
    0 Table and database names are stored on disk using the lettercase specified in the CREATE TABLE orCREATE DATABASE statement. Name comparisons are case sensitive. You should not set this variable to 0 if you are running MySQL on a system that has case-insensitive file names (such as Windows or Mac OS X). If you force this variable to 0 with --lower-case-table-names=0 on a case-insensitive file system and access MyISAM tablenames using different lettercases, index corruption may result.
    1 Table names are stored in lowercase on disk and name comparisons are not case sensitive. MySQL converts all table names to lowercase on storage and lookup. This behavior also applies to database names and table aliases.
    2 Table and database names are stored on disk using the lettercase specified in the CREATE TABLE orCREATE DATABASE statement, but MySQL converts them to lowercase on lookup. Name comparisons are not case sensitive. This works only on file systems that are not case sensitive! InnoDB table names are stored in lowercase, as forlower_case_table_names=1.

    如果想在linux环境中想设置表名为大小写不敏感, 那么可以通过如下的命令:

    mysqld --SET-lower_case_table_names=1;

    或者在mysql server的配置文件中添加配置项:

    vi /etc/my.cnf

    [plain] view plaincopy
     
    1. # The MySQL server  
    2. [mysqld]  
    3. set-variable=lower_case_table_names=1  


    iefreer

     

  • 相关阅读:
    POJ Countries in War 3114
    POJ 2553 The Bottom of a Graph
    POJ 2762 Going from u to v or from v to u?(强联通 + TopSort)
    POJ 3180 The Cow Prom(强联通)
    HDU 4738 Caocao's Bridges
    喵哈哈村的几何大师╰☆莣メ誋こ月
    Vladik and Entertaining Flags
    XOR Queries
    Palindrome
    F
  • 原文地址:https://www.cnblogs.com/bdzwater/p/3318857.html
Copyright © 2011-2022 走看看