Home > Database > Mysql Tutorial > body text

How to Prevent Table Name Conversion to Lowercase During Exports in XAMPP for Windows?

Mary-Kate Olsen
Release: 2024-11-02 18:27:03
Original
955 people have browsed it

How to Prevent Table Name Conversion to Lowercase During Exports in XAMPP for Windows?

Changing the Value of Lower_case_table_Names in XAMPP for Windows

You may encounter an issue where table names are converted to lowercase during database export. To resolve this, the value of lower_case_table_names needs to be changed to 2.

Steps:

To change this value on Windows with XAMPP:

  1. Open the MySQL configuration file located at: [drive]xamppmysqlbinmy.ini
  2. Find the section: # The MySQL server [mysqld]
  3. Add the following line below it:

    lower_case_table_names = 2
    Copy after login
  4. Save the file.
  5. Restart the MySQL service from the XAMPP control panel.

After restarting, the lower_case_table_names value will be set to 2 and table names will no longer be converted to lowercase during exports.

The above is the detailed content of How to Prevent Table Name Conversion to Lowercase During Exports in XAMPP for Windows?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!