在 Windows 上的 XAMPP 中哪里可以更改 lower_case_table_names=2 的值?

Where to change the value of lower_case_table_names=2 in XAMPP on Windows?(在 Windows 上的 XAMPP 中哪里可以更改 lower_case_table_names=2 的值?)
本文介绍了在 Windows 上的 XAMPP 中哪里可以更改 lower_case_table_names=2 的值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用的是 Windows 7 和 XAMPP.我正在尝试导出我的数据库,并且在此过程中表名被转换为小写.

I am using Windows 7 and XAMPP. I am trying to export my database and while in the process the table names are converted to lower case.

我搜索了很多,我知道我必须将 lower_case_table_names 的值从 0 更改为 2,但是我在哪里要更改此值,在哪个文件中?

I have searched a lot, I know I have to change the value of lower_case_table_names from 0 to 2, but where do I have to change this value, in which file?

推荐答案

执行以下步骤:

  1. 打开您的 MySQL 配置文件:[驱动器]xamppmysqlinmy.ini
  2. 查找:# MySQL 服务器 [mysqld]
  3. 在其正下方添加:lower_case_table_names = 2
  4. 保存文件并重启 MySQL 服务

来自:http://webdev.issimplified.com/2010/03/02/mysql-on-windows-force-table-names-to-lowercase/

这篇关于在 Windows 上的 XAMPP 中哪里可以更改 lower_case_table_names=2 的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

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

相关文档推荐

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:按日期将数量值拆分为多行)