为什么我的表名在 phpmyadmin 中被转换成小写?

Why my tables#39; names are converted into lowercase in phpmyadmin?(为什么我的表名在 phpmyadmin 中被转换成小写?)
本文介绍了为什么我的表名在 phpmyadmin 中被转换成小写?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 Windows XP 上使用 wamp server 2.0.每当我创建一个名称为大写的表格时,它都会被转换为小写.

I am using wamp server 2.0 on Windows XP. Whenever I create a table with some uppercases in name, it is converted to lowercase.

例如:

I create: UserInfo
phpmyadmin convert it to: userinfo

我在办公室使用 ubuntu/phpmyadmin 但确实存在这个问题.

I am using ubuntu/phpmyadmin in office but this problem does exists there.

我可以从哪里解决这个问题.谢谢

from where can I fix this. Thanks

推荐答案

有一个强制表名小写的指令.

There is a directive for forcing table names to lower case.

您想将lower_case_table_names 值设置为0.

You want to set the lower_case_table_names value to 0.

您可以从 MySQL 文档此处阅读有关它的更多信息

You can read more about it from MySQL documentation here

这篇关于为什么我的表名在 phpmyadmin 中被转换成小写?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)