问题:程序报Table 'xxx' doesn't exist 的错误,但是查看数据库发现该表已经存在且字母也没有拼错。 原因:Linux 上的mysql 默认是区分大小写导致的。 解决:改动mysql的配置文件,在my.cnf中的[mysqld]下面(位置不能错)加上lower_case_tabl ...
分类:
数据库 时间:
2017-10-25 21:45:03
阅读次数:
167
Description A word consisting of lower-case letters of the English alphabet ('a'-'z') is given. We would like to choose a non-empty contiguous (i.e. o ...
分类:
其他好文 时间:
2017-10-20 18:26:20
阅读次数:
139
Given a string s and a string t, check if s is subsequence of t. You may assume that there is only lower case English letters in both s and t. t is po ...
分类:
其他好文 时间:
2017-10-19 21:17:44
阅读次数:
198
/* Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last w ...
分类:
其他好文 时间:
2017-09-30 10:01:07
阅读次数:
119
MySQL默认是区分表名大小写的,通过如下设置,可以让MySQL不区分表名大小写:1、用root登录,修改 /etc/my.cnf;2、在[mysqld]节点下,加入一行: lower_case_table_names=13、重启MySQL即可; 其中 lower_case_table_names= ...
分类:
数据库 时间:
2017-09-29 17:55:52
阅读次数:
171
有个项目部署到服务器上,日志里老是提示找不到表。 原来Linux下MySQL默认对表名区分大小写。 解决方法: 一、规范代码,表名全部大写 二、修改MySQL配置,使表名全部自动转为小写。 1.用ROOT登录,修改/etc/my.cnf 2.在[mysqld]下加入一行:lower_case_tab ...
分类:
数据库 时间:
2017-09-25 00:46:22
阅读次数:
266
description: Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If ...
分类:
其他好文 时间:
2017-09-16 17:24:18
阅读次数:
279
Given a string s and a string t, check if s is subsequence of t. You may assume that there is only lower case English letters in both s and t. t is po ...
分类:
其他好文 时间:
2017-09-12 19:08:12
阅读次数:
159
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.If the last word ... ...
分类:
其他好文 时间:
2017-09-05 19:11:43
阅读次数:
110
初步研究:通过部署发现在Mycat中部署逻辑表表名大小写混合时,在Mycat连接后出现全变小。容易造成错误逻辑表(按混合表名创建物理表); 可能拯救的方法: 1、Linux下部署安装MySQL,默认不忽略表名大小写,需要手动到/etc/my.cnf下配置lower_case_table_names= ...
分类:
数据库 时间:
2017-08-25 10:56:17
阅读次数:
183